Skip to content

Instantly share code, notes, and snippets.

@mtrl
Created May 2, 2014 21:46
Show Gist options
  • Select an option

  • Save mtrl/4eb5a56eac13f2a408d6 to your computer and use it in GitHub Desktop.

Select an option

Save mtrl/4eb5a56eac13f2a408d6 to your computer and use it in GitHub Desktop.
Hide Status bar on iOS with phonegap application
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