Skip to content

Instantly share code, notes, and snippets.

@sdpjswl
Last active August 29, 2015 14:07
Show Gist options
  • Save sdpjswl/2152dc46edb02fb19315 to your computer and use it in GitHub Desktop.
Save sdpjswl/2152dc46edb02fb19315 to your computer and use it in GitHub Desktop.
Custom title color and font on navigation bar
self.navigationItem.title = @"Place Charles De Gaulle";
self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], NSForegroundColorAttributeName,
[UIFont fontWithName:@"Roboto-Light" size:21], NSFontAttributeName, nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment