anandyn02
anandyn02

Reputation: 445

Fetch Videos from Video App

Need some support in fetching videos which are available in default videos app. I tried with PHAssetCollection & UIImagePickerControler it din't work as excepted.

UIImagePickerController *mediaUI = [[UIImagePickerController alloc] init];
        mediaUI.delegate = self;
        [mediaUI setMediaTypes:[NSArray arrayWithObject:(NSString *)kUTTypeMovie]];
        [self presentViewController:mediaUI animated:NO completion:nil];

Upvotes: 1

Views: 80

Answers (0)

Related Questions