2016-09-09 87 views
0

好吧,所以我有一個phonegap應用程序,我想在橫向模式下運行。實際上,它只能以縱向模式運行,即使旋轉未鎖定,當旋轉設備(iPad)時也不會發生任何反應。PhoneGap在橫向模式下運行應用程序

我:

UIInterfaceOrientationLandscapeRight 
在我的應用程序 - 的info.plist

,並在config.xml我:

<platform name="ios"> 
    <preference name="Orientation" value="landscape" /> 
</platform> 

我錯過了什麼?非常感謝您的幫助。

+0

你也可以用xcode來做,在一般的選項卡中你可以選擇「device oriantation」部分,你可以根據你的需要選擇4個選項,它會完成你的要求。 – Naitik

+0

同時將值設置爲'默認'到配置文件可能有助於實現您的任務 –

回答

0

上帝該死的。在APP-Info.plist中,需要添加

UISupportedInterfaceOrientations 

,並添加

UIInterfaceOrientationLandscapeRight 

作爲參數。

相關問題