I am getting the error message - Use of undeclared identifier \'kUTTypeMovie\'
in the below code -
-(IBAction)selectVideo:(id)sende
I am a novice at iOS development and xcode and spent some time trying to find out why just the import was not working. After figuring out the problem with a more experienced member of my team I found out that not only must you include
#import
but you must also link binaries to the library of the MobileCoreServices framework to the build phases of your project.
Hope this helps! I sure needed this info when I was doing this.