Reputation: 23
I'm currently using
self.navigationController.navigationBar.tintColor = [UIColor orangeColor];
to change the color of my UINavigationBars in my iOS application. However my app now has so many tab bar items it uses Apple's default "More" controller to manage the extra items. Unfortunately, I can't seem to work out how to change the color of the "More" UINavigationBar. Any ideas?
Thanks.
EDIT: Found you can do it - see http://cduu.wordpress.com/2010/08/27/uinavigationbar-color-of-more-tab/ for more.
Upvotes: 2
Views: 3484
Reputation: 16636
Don't build a custom toolbar, just use a custom view for your UIBarButtonItem. For an example of this, check out
On that page, look in the -handle_NowPlayingItemChanged: method where it creates a UIBarButtonItem with a UIButton as its custom view.
Upvotes: 1
Reputation: 33335
It cannot be done. you might want to build a custom "toolbar" if you want that kind of control.
Upvotes: 0