I'm aware that I can individually change the font of a navigation bar as outlined in this answer: Change the navigation bar's font
Currently I'm using a more global approach:
//in my app delegate:
[[UINavigationBar appearance] setBarStyle:UIBarStyleBlackTranslucent];
Is there a way to globally change the font that the Navbar through the appearance object?
thank you!
@Javy's answer with @Philip007's suggestion:
ahh... that's better!
Above answers with updates for deprecated keys and use of
NSShadow
:Also setting the font size to 0 so it automatically resizes based on navigation bar orientation/height.
From Ray Wenderlich:
http://www.raywenderlich.com/4344/user-interface-customization-in-ios-5