Skip to content

Instantly share code, notes, and snippets.

@peerasak-u
Created August 1, 2013 16:34
Show Gist options
  • Select an option

  • Save peerasak-u/6133015 to your computer and use it in GitHub Desktop.

Select an option

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