objective c - UIImagePickerController to show only videos -
is possible have uiimagepickercontroller show videos on phone , not both videos , photos? thanks.
set mediatype property of uiimagepickercontroller.
//example documentation myimagepickercontroller.mediatypes = [[nsarray alloc] initwithobjects: (nsstring *) kuttypemovie, nil]; or simplify documentation's example newer syntax:
myimagepickercontroller.mediatypes = @[kuttypemovie]; more information , guidance available in documentation.
Comments
Post a Comment