如何停止自动旋转?

时间:2015-12-27 13:26:36

标签: ios iphone swift2 orientation

第1次

enter image description here

第二

enter image description here

第三

 override func shouldAutorotate() -> Bool {
        return false
    }

我试过这棵树,即使它没有停止旋转:(

是否有任何问题,因为我对所有设备使用约束enter image description here

请帮助我,我必须做什么,如何停止方向

仅在ipad中出现此问题

1 个答案:

答案 0 :(得分:0)

问题确实存在于iPad中 在iPad上运行的应用程序必须至少支持两种类型的一种方向。 请参阅Does iPad app have to support landscape and portrait?

中的详情

但是,您可以在项目的每个视图控制器中添加此代码以进行解决。

override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
    return .Portrait;
}