To change the titles in all your navigation bars to white, add this code to the
didFinishLaunchingWithOptions
method in your app delegate:
NSDictionary *navbarTitleTextAttributes =
@{ UITextAttributeTextColor:[UIColor whiteColor] };
[[UINavigationBar appearance] setTitleTextAttributes:navbarTitleTextAttributes];
No comments:
Post a Comment