分发没有横向模式的应用程序会产生错误

时间:2018-09-13 19:07:43

标签: ios xcode

我正在开发一个应用程序(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>

我尝试验证存档时遇到的错误:

xcode error

有没有办法让我的应用程序只能在纵向模式下工作?

谢谢

0 个答案:

没有答案