1

我正在开发一个使用 Adob​​e Air 打包的 iOS 应用程序。我正在尝试将 InterfaceOrientation 设置为 info.plist。

因此将 UIInterfaceOrienation 添加到我的 app.xml 中,但是当我尝试创建 iOS 包时,它给了我“application.iPhone.InfoAdditions 包含无效值”错误。

这就是 app.xml 的样子

<iPhone>
    <InfoAdditions>
        <![CDATA[
                          ...... other values

                           <key>UIInterfaceOrientation</key>
                           <string>UIInterfaceOrientationLandscapeRight</string>

                ]]>
         </InfoAdditions>

不太确定我在这里缺少什么。有任何想法吗?

4

1 回答 1

1

我认为您无法通过航空包装机做到这一点。

最接近你能得到恕我直言的是这个

肖像假

您建议的解决方案将适用于本机开发,但(尚未)使用空气包装器。

我认为您将能够通过以下代码对其进行更改: stage.setOrientation( StageOrientation.ROTATED_LEFT );

来源: http: //polygeek.com/4301_air-mobile_playing-with-stage-orientation-in-mobile-air-apps

于 2012-11-28T14:32:22.887 回答