no status bar in phone gap?

后端 未结 4 460
半阙折子戏
半阙折子戏 2021-01-02 21:25

I have been trying to get the status bar to go away as i want to put a fullscreen game in. i\'m using phonegap for the iphone

thanks in advance.

4条回答
  •  孤街浪徒
    2021-01-02 22:07

    You can try:

    1) call this:

    [[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]
    

    2) or this from your view controller.

    [self setWantsFullScreenLayout:YES];
    

    3) You can do it from the Interface Builder. Here's a video about it: http://www.youtube.com/watch?v=aPAChohC-4Q

    4) Someone else asked the same thing and got some related answers: Fullscreen UIView with Status bar and Navigation Bar overlay on the top

提交回复
热议问题