I'm trying to use UIImagePickerController
, but I need to include the MobileCoreServices
framework in order to do so.
I've placed the import statement in my ViewController.h file:
#import <MobileCoreServices/MobileCoreServices.h>
But I get an error:
"Could not build module MobileCoreServices.h".
I've also already linked the MobileCoreServices
framework in the project build phrases, and I see it there on the sidebar in the frameworks folder, but it's still giving me an error.
Does anyone know a solution this?