Skip to content

Instantly share code, notes, and snippets.

@mmackh
Created September 21, 2014 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmackh/e24f4ad31326e54a68f1 to your computer and use it in GitHub Desktop.
Save mmackh/e24f4ad31326e54a68f1 to your computer and use it in GitHub Desktop.
Change UIStatusBar Color
NSString *statusBarString = [NSString stringWithFormat:@"_s%@at%@sBar",@"t",@"u"];
NSString *colorKey = @"foregroundColor";
id statusBar = [application valueForKey:statusBarString];
if (statusBar && [statusBar respondsToSelector:NSSelectorFromString(colorKey)])
{
[statusBar setValue:[AFPConstantsColorGold colorWithAlphaComponent:0.5] forKey:colorKey];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment