- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Adobe Air 构建 iOS 8 iPhone 应用程序,我想隐藏 iOS 的状态栏。我发现这个片段应该可以解决问题:
<key>UIStatusBarHidden</key>
<true/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
如何将其添加到我的应用程序的 app.xml 中?我尝试了以下操作,但收到了意外元素错误消息:
<iPhone>
<InfoAdditions><![CDATA[
<key>UIStatusBarHidden</key>
<true/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
]]></InfoAdditions>
</iPhone>
最佳答案
如前所述here您不能在 XML 中定义该属性
AIR sets several entries in the generated Info.plist file to ensure that application and runtime features work correctly. You cannot define the following settings:
CFBundleDisplayName
CFBundleExecutable
CFBundleIconFiles
CFBundleIdentifier
CFBundleInfoDictionaryVersion
CFBundlePackageType
CFBundleResourceSpecification
CFBundleShortVersionString
CFBundleSupportedPlatforms
CFBundleVersion
CTAutoOrients
CTInitialWindowTitle
CTInitialWindowVisible
CTIosSdkVersion
CTMaxSWFMajorVersion
DTPlatformName
DTSDKName
MinimumOSVersion (reserved till 3.2)
NSMainNibFile
UIInterfaceOrientation
UIStatusBarHidden
UISupportedInterfaceOrientations
Note: You can define the MinimumOSVersion. The MinimumOSVersion definition is honoured in Air 3.3 and later.
但是,您可以像这样在 initialWindow 节点中设置状态栏样式
<fullScreen>true</fullScreen>
<systemChrome>none</systemChrome>
第一行将在启动时删除状态,第二行在运行时删除状态
关于ios - 如何将 iOS8 代码片段添加到 Adobe Air iOS app.xml?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27472050/
我是一名优秀的程序员,十分优秀!