Reputation: 14835
How do I change the color of my text in my UINavigationBar on iOS 7? I want it white instead of black:
Upvotes: 6
Views: 3320
Reputation: 5818
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];
Upvotes: 13