我有一个只有风景的应用程序,当我在iPad模拟器上测试它时,设备以纵向模式启动,并在应用程序加载后转向横向模式,并弄乱我的应用程序的整个布局。在应用程序加载之前,我如何让ipad进入横向模式,因为它弄乱了我的布局?这是我在GameViewController中使用的代码:
override func shouldAutorotate() -> Bool {
return true
}
override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
let orientation: UIInterfaceOrientationMask =
[UIInterfaceOrientationMask.Landscape, UIInterfaceOrientationMask.Landscape]
return orientation
}