Created
October 25, 2012 03:32
-
-
Save mactive/3950269 to your computer and use it in GitHub Desktop.
Global UINavigationBar style
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque animated:NO]; | |
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navigationBar_bg.png"] forBarMetrics:UIBarMetricsDefault]; | |
[[UINavigationBar appearance] setTintColor:[UIColor colorWithRed:121/255 green:123/255 blue:126/255 alpha:1.0] ]; | |
[[UIBarButtonItem appearance] setTintColor:RGBACOLOR(55, 61, 70, 1)]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment