有没有办法从图库或文件管理器中选择图像和PDF

时间:2016-10-12 11:05:03

标签: ios objective-c swift pdf

在我的应用中,我试图从图库或文件管理器中选择唯一的图像和PDF文件。

但是当我获取存储在文件管理器和库中的所有图像和文件时。

这是我的代码:

if ([[actionSheet buttonTitleAtIndex:buttonIndex] isEqualToString:@"Gallery"]) { 
    UIImagePickerController *pickerView = [[UIImagePickerController alloc] init]; 
    pickerView.allowsEditing = YES; pickerView.delegate = self; 
    [pickerView setSourceType:UIImagePickerControllerSourceTypeSavedPhotosAl‌​bum]; 
    [self presentViewController:pickerView animated:YES completion:nil]; 
} 

0 个答案:

没有答案