How to change the color of my text in UINavigationBar on iOS 7?

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

enter image description here

+6
source share
1 answer

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]; 
+13
source

Source: https://habr.com/ru/post/954531/


All Articles