Skip to content

Instantly share code, notes, and snippets.

@cute
Forked from Marlunes/hide_status_bar
Last active December 23, 2015 14:19
Show Gist options
  • Select an option

  • Save cute/6648034 to your computer and use it in GitHub Desktop.

Select an option

Save cute/6648034 to your computer and use it in GitHub Desktop.
//viewDidload
if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {
// iOS 7
[self prefersStatusBarHidden];
[self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];
} else {
// iOS 6
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide];
}
// Add this Method
- (BOOL)prefersStatusBarHidden
{
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment