如何在应用加载前将我的 ipad 设置为横屏模式?

How do I set my ipad to landscape mode before the app loads?

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

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

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

成功了我进入我的 info.plist 文件并删除了 Supported interface orientations(iPad) 的肖像。

在 Project Target -> General 中保留此设置