Skip to content

Instantly share code, notes, and snippets.

@oa414
Created August 7, 2014 01:40
Show Gist options
  • Save oa414/2e212b4da8e13e4a3f1e to your computer and use it in GitHub Desktop.
Save oa414/2e212b4da8e13e4a3f1e to your computer and use it in GitHub Desktop.
initNavBarWithColor
+(void)initNavBarWithColor:(UINavigationBar *) navigationBar color:(NSUInteger )hexColor title:(NSString *)title{
navigationBar.barTintColor = UIColorFromRGB(hexColor);
navigationBar.tintColor = [UIColor whiteColor];
[navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}];
navigationBar.translucent = YES;
navigationBar.topItem.title = title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment