为Phonegap / Cordova iOS应用程序强制实现正确的方向横向模式

时间:2014-03-21 14:24:16

标签: javascript ios cordova orientation screen-orientation

是否可以强制您的Phonegap应用仅使用正确的横向模式?

我知道这对于原生iOS应用程序是可行的(请参阅Xcode中的设置屏幕截图)enter image description here

我能找到的Phonegap唯一的东西是config.xml中的方向偏好:

<preference name="orientation" value="landscape" />

此首选项强制以横向模式显示应用,但允许您将屏幕旋转180度。这不是理想的结果。

2 个答案:

答案 0 :(得分:2)

对于IOS

在config.xml中设置:

<preference name="orientation" value="portrait"></preference>

UIInterfaceOrientationLandscapeLeft

在“UISupportedInterfaceOrientations”资源文件夹下的ios文件夹中的“ProjectName”-info.plist文件中设置:

UIInterfaceOrientationLandscapeRight

UIInterfaceOrientationPortrait

纵向:

UIInterfaceOrientationPortraitUpsideDown

pure-u-

包括适用于您的要求。

答案 1 :(得分:0)

找到解决方案:

<gap:config-file platform="ios" parent="UISupportedInterfaceOrientations" overwrite="true">
<array>
    <string>UIInterfaceOrientationLandscapeRight</string>
</array>