我现在正在使用 iOS 7,试图让 UIImagePickerController 让用户选择方形模式,因为它现在是 iOS 7 中的一个功能。我需要启用什么才能允许此滑动吗?下面发布的相关代码,虽然它很标准。
UIImagePickerController *cameraView = [[UIImagePickerController alloc] init];
cameraView.sourceType = UIImagePickerControllerSourceTypeCamera;
cameraView.delegate = (id)self;
[self presentViewController:cameraView animated:YES completion:nil];
我一直在搜索可用的凌乱的 iOS 7 文档,但我什至无法判断他们是否更改了开发人员库 - 我没有看到任何新内容。