6

How do I change the color of my text in my UINavigationBar on iOS 7? I want it white instead of black:

enter image description here

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Ethan Allen
  • 14,425
  • 24
  • 101
  • 194

1 Answers1

13

If you're ok with a global change, you can put this in your App Delegate:

NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, nil];
[[UINavigationBar appearance] setTitleTextAttributes:attributes];
Corey
  • 5,818
  • 2
  • 24
  • 37