标签: ios iphone swift xcode orientation
我是IOS开发的新手,在问这个问题之前我已经尝试了所有关于stackoverflow的答案,但找不到任何有用的东西(可能我在某处失败了)。
我希望在所有应用中禁用旋转设备视图的可能性,我想在每个ControllerView中决定是否使用纵向或横向。
我怎么能用Swift做到这一点?
答案 0 :(得分:0)
你应该在每个ViewController上尝试这个,并设置它可以旋转,以及应该支持的方向。
override func shouldAutorotate() -> Bool { return false } override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask { return UIInterfaceOrientationMask.Portrait }
我收到此错误: