2013-09-24 17 views

risposta

13

Se sei ok con un cambiamento globale, si può mettere questo nel vostro App Delegato:

NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, nil]; 
[[UINavigationBar appearance] setTitleTextAttributes:attributes]; 
+3

Perché la vecchia sintassi? '@ {UITextAttributeTextColor: [UIColor whiteColor]}' –

+1

UITextAttributeTextColor sembra essere deprecato in iOS 7 –

+10

Per iOS 7 e così via, usa NSForegroundColorAttributeName invece di UITextAttributeTextColor. –

Problemi correlati