Created
May 2, 2014 21:46
-
-
Save mtrl/4eb5a56eac13f2a408d6 to your computer and use it in GitHub Desktop.
Hide Status bar on iOS with phonegap application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| To hide statusbar, add the following code in the file MainViewController.m under the function -(void)viewDidUnload | |
| - (BOOL)prefersStatusBarHidden | |
| { | |
| return YES; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment