Skip to content

Instantly share code, notes, and snippets.

@mlabraca
Created October 28, 2014 09:55
Show Gist options
  • Save mlabraca/53798e3e0554de26ffca to your computer and use it in GitHub Desktop.
Save mlabraca/53798e3e0554de26ffca to your computer and use it in GitHub Desktop.
Applies alpha to status bar, but using private methods that would make app been rejected.
- (void) hideStatusbar:(BOOL)mustHide
{
UIView *statusBarView = [[UIApplication sharedApplication] valueForKey:[@[@"status", @"Bar"] componentsJoinedByString:@""]];
statusBarView.alpha = mustHide ? 0 : 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment