iPad 在 objective c 中使用图像选择器控制器时图像正在获取 cropped/resized

iPad image is getting cropped/resized while using image picker controller in objective c

当我使用图像选择器使用 iPad 相机拍摄照片时,照片会自动获取 resized/cropped,同时存储 it.The 相同的代码对 iPhone.Can 任何人都可以正常工作请帮助我找到解决方案。我在 iOS 9.x.I 中得到这个需要显示原始图像。

非常感谢您。

我更改后问题得到解决

UIImage * image = info[UIImagePickerControllerEditedImage];

UIImage * image = info[UIImagePickerControllerOriginalImage];

didFinishPickingMediaWithInfo 方法中。