好的,所以我有一个我想在横向上运行的phonegap应用程序。实际上,它只是纵向运行,即使没有锁定旋转,当我旋转设备(iPad)时也没有任何反应。
我有:
UIInterfaceOrientationLandscapeRight
在我的app-info.plist中,在config.xml中我有:
<platform name="ios">
<preference name="Orientation" value="landscape" />
</platform>
我错过了什么吗?非常感谢您的帮助。
答案 0 :(得分:0)
上帝该死的。在app-info.plist中,需要添加
UISupportedInterfaceOrientations
并添加
UIInterfaceOrientationLandscapeRight
作为参数。