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

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

我能找到的Phonegap唯一的东西是config.xml中的方向首选项:

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

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

最佳答案

对于IOS

在config.xml中设置:

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

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

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

要么
UIInterfaceOrientationLandscapeRight

要么

对于纵向:
UIInterfaceOrientationPortrait

要么
UIInterfaceOrientationPortraitUpsideDown

包括适用于您的要求的。

10-04 20:14