我正在开发一个iOS项目。 我想设置我的状态栏,但它不起作用。
我在config.xml中添加了:
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#000000" />
并将插件添加到我的项目中:
cordova plugin add cordova-plugin-statusbar
但它不起作用。
我的版本是cordova 6.3.1
有什么想法吗?
答案 0 :(得分:2)
解决方案是,我忘了将cordova.js
文件插入index.html
。
答案 1 :(得分:1)
在xcode项目中,找到项目.plist
文件(其中包含命名约定 projectName-Info.plist),并将以下两个键值对添加到文件中:
Status bar is initially hidden: YES
View controller-based status bar appearance: NO
在iOS 10.0.2上使用Cordova 6.3.1进行测试