Monthly Archives: October 2009

Tinted navigation bar

During customization of our app’s user interface, sometimes you may want to change tint of the UINavigationBar. It is apparently possible by code. Just type the following in view controller that is first loaded into navigation stack:
self.navigationController.navigationBar.tintColor = [UIColor redColor];
And you’ll get nice bloody-red tint of navigation bar.

Leave a comment