Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 iPhone 上启动后设置方向
我将如何设置应用程序的默认方向,例如初始屏幕所在的方向,以及应用程序在自动旋转之前所在的方向?
只需执行以下操作:
- 在 info.plist 中添加“Initial Interface Orientation”键。
- 将值更改为所需的方向(作为字符串;有关可能的字符串值,请参见“支持的界面方向”)。
在-(void)shouldAutoRotateInterfaceOrientation委托中,如果您希望将景观设置为默认值,请这样输入:
-(void)shouldAutoRotateInterfaceOrientation
return UIInterfaceOrientationLandscapeLeft