cocoa touch - How do I change the color of my text in my UINavigationBar on iOS 7? -


how change color of text in uinavigationbar on ios 7? want white instead of black:

enter image description here

if you're ok global change, can put in app delegate:

nsdictionary *attributes = [nsdictionary dictionarywithobjectsandkeys:[uicolor whitecolor], uitextattributetextcolor, nil]; [[uinavigationbar appearance] settitletextattributes:attributes]; 

Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -