user1159710
user1159710

Reputation: 1

Changing top bar color & tab bar text color

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:

http://puu.sh/dVJl

Upvotes: 0

Views: 1628

Answers (1)

Michael Dautermann
Michael Dautermann

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

Related Questions