How to remove iOS status bar with Phonegap Build?

前端 未结 9 2067
走了就别回头了
走了就别回头了 2021-02-02 10:11

Is it possible to get rid of the status bar in iOS7 when using Phonegap Build 3.1? I can remove the status bar when building locally in Xcode, but as soon as I try Phonegap Buil

9条回答
  •  庸人自扰
    2021-02-02 10:56

    Usually, you would edit the info.plist and add this key:

     UIViewControllerBasedStatusBarAppearance
    

    But as you can't do this on build, you'll have to add a plugin:

    https://github.com/phonegap-build/StatusBarPlugin/blob/master/README.md

    And then:

    StatusBar.hide();

提交回复
热议问题