我正在尝试设置我的mobile-config.js文件,这样对于iphone它只是肖像,对于ipad,它允许以纵向或横向进行。
但我无法弄明白,而且关于如何做到这一点的信息很少。 http://docs.meteor.com/#/full/App-info
流星文档指定了如何根据iOS和Android等操作系统锁定方向,但现在如何根据设备自定义方向。
我该怎么做?
答案 0 :(得分:0)
我不确定您是否可以使用流星设置直接根据设备类型自定义方向。
但是,如果您在本地构建应用程序,则可以手动编辑项目的iOS .plist并设置以下键:
arr3
如果您使用云服务(或本地)进行构建,则可以通过向config.xml添加配置并在项目中包含cordova-custom-config插件来应用它来设置这些首选项。 您将以下内容添加到config.xml:
<key>UIInterfaceOrientation</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>