Reputation: 7949
I have a UITabBarController
with 3 items, and when the app starts, all the items' icon appear tinted, instead of having one tinted and the other two greyed out:
After I navigate through the tabs, they start to behave correctly. Why is this happening?
Upvotes: 0
Views: 54
Reputation: 1817
Add this line into your App Delegate
[[UITabBar appearance] setTintColor:[UIColor orangeColor]];
Upvotes: 3