Reputation: 1
How can I change the color in the tab bar? I'm talking about the bar when you link an NavigationController to normal UIViewController. Second question. I changed the color of the tab bar (the one on the bottom, to navigate with) to blue. But now, the default text of the tab bar -from a different tab that you are on- is hard to read. As the color of the bar is light blue and the text is dark grey. Is that changeable?
I'm currently using Storyboard too.
Image:
Upvotes: 0
Views: 1628
Reputation: 89569
The "top bar" is called the navigation bar and you can change that via the tintColor
property (documentation linked for you).
The tab bar also now has it's own tintColor
property as of iOS 5.0 (and I've linked the documentation for that too).
Upvotes: 1