-1
問題狀態:我需要訪問使用我們可以使用的UIImagePickerController景觀iPad的
的UIImagePickerController
景觀iPad的照片庫。這在縱向模式下工作正常,但在橫向應用程序崩潰。
如何使用UIImagePickerController以橫向模式訪問照片庫。如果沒有,那麼任何其他替代方法來做到這一點。
我想這些已經
override var shouldAutorotate: Bool
{
return false
}
func application(_ application: UIApplication, supportedInterfaceOrientationsForWindow window: UIWindow) -> UIInterfaceOrientationMask {
return .all
}
任何幫助,將不勝感激。
謝謝
可能重複[在橫向使用UIImagePickerController](http://stackoverflow.com/questions/19374237/using-uiimagepickercontroller-in-landscape-orientation) – Sac
我試過它們兩個 –