第一次进入相机时,UIImagePickerController上的UI方向错误

时间:2016-03-22 11:35:41

标签: ios objective-c ipad uiimagepickercontroller

首次在iPad上输入相机时,我在UIImagePickerController上的UI方向错误。设备在横向,但UIImagePickerController在纵向。

That how it's looks like

设备旋转后一切正常--UIImagePickerController获取正确的UI方向。

我有

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
   return UIInterfaceOrientationMaskAll; 
}

- (BOOL)shouldAutorotate {
   return YES;
}

1 个答案:

答案 0 :(得分:2)

好的,我找到了答案。

呈现控制器(UIViewController)有一个名为modalPresentationStyle的属性,它被设置为UIModalPresentationFullScreen。 要解决我的问题,我只需将其设置为UIModalPresentationOverFullScreen

presentingController.modalPresentationStyle = UIModalPresentationOverFullScreen;

多数人。