在我的应用中,在目标的Deployment Info
中,我检查了所有设备方向。当我运行我的应用程序时,他们都在工作,除了颠倒。
我不明白为什么。
然后在我的主viewController上我添加了这个:
override func shouldAutorotate() -> Bool {
return true
}
override func supportedInterfaceOrientations() -> Int {
return (UIInterfaceOrientation.Portrait.rawValue |
UIInterfaceOrientation.PortraitUpsideDown.rawValue |
UIInterfaceOrientation.LandscapeLeft.rawValue |
UIInterfaceOrientation.LandscapeRight.rawValue)
}
现在它在纵向和纵向上工作颠倒,但它在风景中不起作用。
知道为什么吗?
由于