How to show all camera controls with/for UIImagePickerController?
问题 I have trouble showing the camera controls when using UIImagePickerController. Specifically, I need to be able to select between slo-mo, video, photo, square and pano. The essential part of code I use is: UIImagePickerController *pc = [[UIImagePickerController alloc] init]; [pc setSourceType:UIImagePickerControllerSourceTypePhotoLibrary]; pc.mediaTypes = [[NSArray alloc] initWithObjects:(NSString *)kUTTypeImage, nil]; But this shows a picker controller with the ability to take a picture only