我想要的只是通过应用程序仅在 iPhone 的 MediaLibrary 中显示照片的选择。
我不希望用户看到要从那里选择的视频。
实现这一目标的方式(机会)是什么?
我想要的只是通过应用程序仅在 iPhone 的 MediaLibrary 中显示照片的选择。
我不希望用户看到要从那里选择的视频。
实现这一目标的方式(机会)是什么?
使用以下代码显示 MediaLibrary。
imgPicker = [[UIImagePickerController alloc] init];
imgPicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
imgPicker.delegate = self;
imgPicker.allowsEditing = YES;
[self presentModalViewController:imgPicker animated:YES];
它只会向您显示媒体库的图像。
从文档:
myImagePickerController.mediaTypes =
[[NSArray alloc] initWithObjects: (NSString *) kUTTypeImage, nil];