The UINavigationBar and UISearchBar both have a tintColor property that allows you to change the tint color (surprising, I know) of both of those items. I want to do the same thing to the UITabBar in my application, but have found now way to change it from the default black color. Any ideas?
|
12
|
|
|
|
|
|
I have been able to make it work by subclassing a UITabBarController and using private classes:
|
||
|
|
|
when you just use addSubview your buttons will loose clickability, so instead of
use:
|
||
|
|
|
|
[v setBackgroundColor ColorwithRed: Green: Blue: ]; |
||
|
|
|
|
This is the great work, i was finding the solution and this topic is really helpful to me, but i still have issue that i want to change tabbaritem image to rgb and not gray scale color, is there any way to do so? |
||
|
|
|
|
Thanks. Bug filed in radar! |
||
|
|
|
|
There is no simple way to do this, you basically need to subclass UITabBar and implement custom drawing to do what you want. It is quite a bit of work for the effect, but it may be worth it. I recommend filing a bug with Apple to get it added to a future iPhone SDK. |
||
|
