如何在应用加载之前将ipad设置为横向模式?

时间:2016-05-10 01:24:24

标签: ios xcode ipad uiinterfaceorientation

我有一个只有风景的应用程序,当我在iPad模拟器上测试它时,设备以纵向模式启动,并在应用程序加载后转向横向模式,并弄乱我的应用程序的整个布局。在应用程序加载之前,我如何让ipad进入横向模式,因为它弄乱了我的布局?这是我在GameViewController中使用的代码:

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

override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
    let orientation: UIInterfaceOrientationMask =
        [UIInterfaceOrientationMask.Landscape, UIInterfaceOrientationMask.Landscape]
        return orientation
}

2 个答案:

答案 0 :(得分:1)

让它工作我进入我的info.plist文件并删除Supported interface orientations(iPad)的肖像。

答案 1 :(得分:1)

将此设置保留在Project Target中 - >一般

enter image description here

enter image description here