我使用UIImagePickerController'sUIView作为我自己的子视图的UIViewController's UIView子视图。没什么特别的,当我拍照时问题就来了。正在发生的事情是这样的:
1 我从UIImagePickerController的视图中看到的图片是这样的:

2 这是我在拍摄照片 ( [self.imagePicker takePicture];
) 并将其放在 上时所看到的UIImageView:

从我看到的图像中,Y 轴的位置要高一些。有没有办法解决这个问题?我不在乎是否必须对以下图像中出现的图像进行某种裁剪:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info;
当我在 上使用UIViewContentModeScaleAspectFill时,我可能会理解这种行为UIImageView contentMode,但我希望能够从我想要开始“查看”的位置指定 Y。