Since I am developing an iOS >= 5.0 application, I am trying to change the appearance of the main UI components through the appearance proxies.
When dealing with the UITabBar
component, I correctly changed its tintColor
to a light shade of gray trough the [[UITabBar appearance] setTintColor:]
method. But doing this, the UITabBarItem
s included in the bar are quite impossible to see, since they retain the old gray/white color in their title label.
I tried to change their appearance through the [UITabBarItem appearance]
proxy, but there is no way to make them visible.
Can anyone suggest me a way to solve this problem? Thank you!
Hi this will work for what you want to do
Happy Coding :)