我正试着用它来处理它:
func application(application: UIApplication, supportedInterfaceOrientationsForWindow window: UIWindow?) -> UIInterfaceOrientationMask {
if shouldRotate {
return .LandscapeLeft
} else{
return .Portrait
}
}
但是,当View控制器从纵向更改为横向时。我按下主页按钮并重新启动应用程序,每次按下后退按钮时,UI都会断开。
请帮忙!