在 iOS 7 中,相机具有多种模式:视频、照片、方形和全景。在我正在开发的应用程序中,我们允许用户使用相机拍照。我们只想要正方形的图片,所以我们让用户在之后裁剪图像。
是否可以以编程方式强制相机仅拍摄方形照片?
这是我打开相机的代码:
-(void) openImagePickerSource:(UIImagePickerControllerSourceType)type
{
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.sourceType = type;
[self presentViewController:imagePicker animated:YES completion:^{}];
}
我一直在查看文档,但没有找到任何东西。