How to remove iOS status bar with Phonegap Build?

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

    Add this function into MainViewController.m file:

    //fix not hide status on ios7
    - (BOOL)prefersStatusBarHidden
    {
        return YES;
    }
    

提交回复
热议问题