不要在iPhone应用程序的照片库中显示视频

时间:2012-07-23 12:17:51

标签: iphone ios5 photo-gallery

我想要的只是通过应用程序在iPhone的MediaLibrary中显示照片的选择。

我不希望用户看到要从那里选择的视频。

实现这一目标的方式(机会)是什么?

2 个答案:

答案 0 :(得分:1)

使用以下代码显示MediaLibrary。

imgPicker = [[UIImagePickerController alloc] init];
imgPicker.sourceType =  UIImagePickerControllerSourceTypePhotoLibrary;
imgPicker.delegate = self;
imgPicker.allowsEditing = YES;
[self presentModalViewController:imgPicker animated:YES];

它只会显示媒体库的图像。

答案 1 :(得分:0)

来自docs

myImagePickerController.mediaTypes = 
    [[NSArray alloc] initWithObjects: (NSString *) kUTTypeImage, nil];