Swift在代码中将方向设置为特定屏幕

时间:2015-06-24 08:05:49

标签: ios swift uiviewcontroller

我想以编程方式设置ViewController方向,在解除ViewController之后我希望方向返回上一个模式

这是我目前使用的:

if(GamePrefrences.orientation == "landscape")
    {
        value = UIInterfaceOrientation.LandscapeLeft.rawValue
    }
    else
    {
        value = UIInterfaceOrientation.Portrait.rawValue
    }

1 个答案:

答案 0 :(得分:3)

  

您可以覆盖preferredInterfaceOrientationForPresentation   一个视图控制器,旨在全屏显示   具体方向。

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIViewController_Class/