Fetch Videos from Video App

76 Views Asked by At

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];
0

There are 0 best solutions below