我已拨打UIImagePickerController
拍摄照片,但每次拍照时,相机会自动将图像转换为纵向图像,但我想以拍摄方向拍摄图像。
在didFinishPickingMediaWithInfo
方法中,返回的图片每次都有UIImageOrientationUp
方向。
在我的父控制器中,我有以下代码:
-(BOOL)shouldAutorotate
{
return YES;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}