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:
if you're ok global change, can put in app delegate:
nsdictionary *attributes = [nsdictionary dictionarywithobjectsandkeys:[uicolor whitecolor], uitextattributetextcolor, nil]; [[uinavigationbar appearance] settitletextattributes:attributes];
Comments
Post a Comment