If you're fine with global changes, you can put this in your application delegate:
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, nil]; [[UINavigationBar appearance] setTitleTextAttributes:attributes];
Corey source share