我只想在纵向模式下使用一个屏幕,而在横向和纵向模式下只需要一个屏幕ios 9 application

时间:2016-02-17 12:01:58

标签: ios swift2 ios9 xcode7 xcode-storyboard

我希望纵向限制一个页面,而横向和纵向的整个应用程序如何实现此功能。我已经尝试过堆栈溢出的旧代码,但它无法正常工作。

如果有人解决了这个问题,那么请提前帮助我。

1 个答案:

答案 0 :(得分:1)

将此代码段添加到不应旋转的ViewController:

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

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