我正在开发一个允许图像捕获但不允许视频捕获的应用程序,但是我不知道如何从UIImagePickerView中删除照片/视频切换。这是我正在使用的代码,摘自Apple文档:

UIImagePickerController *cameraUI = [[UIImagePickerController alloc] init];
cameraUI.sourceType = UIImagePickerControllerSourceTypeCamera;

// Displays a control that allows the user to choose picture or
// movie capture, if both are available:
cameraUI.mediaTypes = [UIImagePickerController availableMediaTypesForSourceType: UIImagePickerControllerSourceTypeCamera];

// Hides the controls for moving & scaling pictures, or for
// trimming movies. To instead show the controls, use YES.
cameraUI.allowsEditing = NO;

cameraUI.delegate = self;

[self presentModalViewController:cameraUI animated:YES];

除了照片/视频开关外,我想保留所有相机控件。谢谢!

最佳答案

您只需将UIImagePickerController的mediaType属性设置为仅包含图像,您在其中使用的图像将用于分配所有可用的媒体类型。您可以阅读here,如果您不确定可以始终输出哪种类型他们来控制台,然后只用适当的设置数组(只允许图片)

07-24 09:25