我正在开发一个应用程序(iPhone和iPad),但我不希望它在横向模式下可用。
我在Info.plist中所做的:
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<!-- <string>UIInterfaceOrientationLandscapeLeft</string>-->
<!-- <string>UIInterfaceOrientationLandscapeRight</string>-->
</array>
我尝试验证存档时遇到的错误:
有没有办法让我的应用程序只能在纵向模式下工作?
谢谢