UIInterfaceOrientation info.plist

时间:2012-11-28 14:26:33

标签: ios air

我正在使用Adobe Air打包的iOS应用程序。 我正在尝试将InterfaceOrientation设置为info.plist。

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

这就是app.xml的样子

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

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

                ]]>
         </InfoAdditions>

不太清楚我在这里缺少什么。 有什么想法吗?

1 个答案:

答案 0 :(得分:1)

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

最接近你能获得imho的是

肖像 假

您建议的解决方案将在本机开发中使用,但尚未使用空中包装器。

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

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