Cordova / Phonegap在iOS上的config.xml中忽略全屏首选项

我已经定义了

<preference name="Fullscreen" value="true"/> 

但是通过Xcode部署它忽略了这一点。 即使我在编译设置上设置了隐藏状态栏。 我所有的其他config.xml设置似乎工作,但不是这个。

Fullscreen无法在iOS 7及更高版本上使用。 相反,您可以使用Cordova HiddenStatusbarOverlay Plugin来隐藏状态栏。

另一种隐藏它的方法是使用gap:config-file元素来覆盖UIViewControllerBasedStatusBarAppearance属性:

 <gap:config-file platform="ios" parent="UIViewControllerBasedStatusBarAppearance" overwrite="true"> <false/> </gap:config-file> 

使用以下偏好标签。 对我来说工作正常。

 <preference name="StatusBarOverlaysWebView" value="true" />