How to remove iOS status bar with Phonegap Build?

前端 未结 9 2187
走了就别回头了
走了就别回头了 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:40

    Simply install the status bar plugin (I'm using Cordova 5.x):

    cordova plugin add cordova-plugin-statusbar@1.0.1
    

    The in your code just reference its global variable and use .hide():

    StatusBar.hide()
    

提交回复
热议问题