我发现cordova / phonegap文档非常混乱,特别是与ios有关。
例如:在http://cordova.apache.org/docs/en/3.3.0/config_ref_index.md.html中 它说:
Orientation allows you to lock orientation and prevent the interface from rotating in response to changes in orientation.
可能的值包括默认值,横向或纵向。例如:
<preference name="Orientation" value="landscape" />
根本不起作用。
此外,我发现的插件都没有通过编译(主要是丢失文件问题)。
我觉得这是一个版本控制问题,但我读过的文档都没有提到它。
所以我的问题:
如何锁定方向?
如何找到正确的文档? 例如我提供的链接有'3.3.0',我猜这意味着版本,但我找不到v2中config xml的文档。
答案 0 :(得分:0)
在3.3 - ios中 - 通过设置:
来锁定方向在* -info.plist中完成<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
注意:您应该从默认生成的plist中删除不必要的值。