UIImagePickerController bug

前端 未结 4 1006
庸人自扰
庸人自扰 2020-12-25 12:09

I think I found a bug in latest iOS 7 by running an app with Base SDK set to iOS 6.1 (possibly even lower versions too, haven\'t tested that out yet)

I have this ima

4条回答
  •  粉色の甜心
    2020-12-25 13:01

    I believe we ended up working around similar issues by never asking for the edited image directly; ask for the original image and the crop information (UIImagePickerControllerCropRect) and do the cropping yourself. Note that you need to worry about rotations in the source image if you do the cropping yourself.

    You might find the answer in this question helpful for implementing this work-around.

提交回复
热议问题