Я работаю над приложением, которое позволяет захватывать изображения, но не захватывать видео, но я не могу понять, как убрать переключатель фото / видео из 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];
Я бы хотел оставить все элементы управления камерой, КРОМЕ фото / видео переключателя. Спасибо!