Reputation: 312
Is it possible to have the UIImagePickerController only show the videos on the phone and not both videos and photos? Thanks.
Upvotes: 1
Views: 738
Reputation: 141638
Set the mediaType
property of the UIImagePickerController
.
//Example from documentation
myImagePickerController.mediaTypes = [[NSArray alloc] initWithObjects: (NSString *) kUTTypeMovie, nil];
or to simplify the documentation's example with newer syntax:
myImagePickerController.mediaTypes = @[kUTTypeMovie];
More information and guidance is available in the documentation.
Upvotes: 5