我有一个根UIViewController,显示ipad中PopOverController上显示的照片(在UINavigationController上)。
我在我的根UIViewController上有一个rightBarButtonItem,它唤起了一个UIImagePickerController。我能够通过cameraViewCtrl.modalPresentationStyle=UIModalPresentationCurrentContext;
但它始终从底部出现,我希望从右到左呈现它,就像原生导航推送过渡风格一样。我已经提到了这个:link 。这不是解决方案,因为它从右边移动整个窗口而不仅仅是PopOver的UIImagePickerController。
是否由于UIModalTransitionStyle默认为UIModalTransitionStyleCoverVertical,我不希望UIModalTransitionStyleFlipHorizontal进行翻转过渡。
是否有任何替代方法以从右到左的方式呈现UIImagePickerController的导航过渡方式?