我想以编程方式设置ViewController方向,在解除ViewController之后我希望方向返回上一个模式
这是我目前使用的:
if(GamePrefrences.orientation == "landscape")
{
value = UIInterfaceOrientation.LandscapeLeft.rawValue
}
else
{
value = UIInterfaceOrientation.Portrait.rawValue
}
答案 0 :(得分:3)
您可以覆盖preferredInterfaceOrientationForPresentation 一个视图控制器,旨在全屏显示 具体方向。
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIViewController_Class/