TomG103
TomG103

Reputation: 312

UIImagePickerController to show only videos

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

Answers (1)

vcsjones
vcsjones

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

Related Questions