Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AdityaDeshmane/420b30d28f6d83b153b7 to your computer and use it in GitHub Desktop.
Save AdityaDeshmane/420b30d28f6d83b153b7 to your computer and use it in GitHub Desktop.
iOS : UIBarButtonItem font and color
NSDictionary *navbarItemTextAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor],NSForegroundColorAttributeName,
[UIFont fontWithName:FONT_NAME_NAVIGATION_BAR size:15],NSFontAttributeName,nil];
[[UIBarButtonItem appearance] setTitleTextAttributes:navbarItemTextAttributes forState:UIControlStateNormal];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment