2017-11-24 20 views
0

私のアプリケーションがランドスケープモードのみをサポートしているため、UIImagePickerControllerをiPhone用のランドスケープモードで表示しようとしています.iOS 11.3でも問題なく動作しますが、iOS 10.3.3でアプリケーションを実行するたびに、エラーと時間:LandscapeでUIImagePickerControllerを開きます

*** Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Supported orientations has no common orientation with the application, and [PUUIAlbumListViewController shouldAutorotate] is returning YES' * First throw call stack:** 
+0

サブクラスUIImagePickerControllerと私を助ける

extension UIImagePickerController { override open var shouldAutorotate: Bool { return true } override open var supportedInterfaceOrientations : UIInterfaceOrientationMask { return .all } } 

・ホープ以下のようなUIImagePickerControllerの拡張を作成します。 'supportedInterfaceOrientations'メソッドと' shouldAutorotate'メソッドを実装します –

答えて

0

はあなた

関連する問題