Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AdityaDeshmane/21179aeb6c48db21bcfa to your computer and use it in GitHub Desktop.
Save AdityaDeshmane/21179aeb6c48db21bcfa to your computer and use it in GitHub Desktop.
iOS : UINavigationController title text Colour & Font
NSDictionary *navbarTitleTextAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor],NSForegroundColorAttributeName,
[UIFont fontWithName:@"Avenir-Light" size:18],NSFontAttributeName,nil];
self.navigationBar.titleTextAttributes = navbarTitleTextAttributes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment