I\'m using a custom drawRect function to draw on UINavigationBar across my application in iOS4, it doesn\'t use images, only CoreGraphics.
UINavigationBar
Since you ca
In iOS 6 they added a new method to UINavigationController that is retractively available in iOS 5 as well:
UINavigationController
- (id)initWithNavigationBarClass:(Class)navigationBarClass toolbarClass:(Class)toolbarClass;
Now you can just pass your custom class when the navigation controller is instantiated.