是否可以强制您的Phonegap应用仅使用正确的横向模式?
我知道这对于原生iOS应用程序是可行的(请参阅Xcode中的设置屏幕截图)
我能找到的Phonegap唯一的东西是config.xml中的方向偏好:
<preference name="orientation" value="landscape" />
此首选项强制以横向模式显示应用,但允许您将屏幕旋转180度。这不是理想的结果。
答案 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>