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?
|
|
I have been able to make it work by subclassing a UITabBarController and using private classes:
|
|||||||||||
|
|
iOS 5 has added some new appearance methods for customising the look of most UI elements. You can target every instance of a UITabBar in your app by using the appearance proxy:
or a specific instance by using one of the new properties on that class:
|
|||||||||
|
|
I have an addendum to the final answer. While the essential scheme is correct, the trick of using a partially transparent color can be improved upon. I assume that it's only for letting the default gradient to show through. Oh, also, the height of the TabBar is 49 pixels rather than 48, at least in OS 3. So, if you have a appropriate 1 x 49 image with a gradient, this is the version of viewDidLoad you should use:
Here's what the UITabBar looks like: http://www.lehigh.edu/sol0/TabBarGradient.jpg |
|||||||||||
|
|
When you just use addSubview your buttons will lose clickability, so instead of
use:
|
|||||
|
|
Following is the perfect solution for this. This works fine with me for iOS5 and iOS4.
|
|||||
|
|
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. |
|||||
|
|
There are some good ideas in the existing answers, many work slightly differently and what you choose will also depend on which devices you target and what kind of look you're aiming to achieve. 1). If you're looking to get rid of the glossy overlay for a more flat look do:
2). To set custom images to the tabBar buttons do something like:
Where
3) Finally, you may want to customize the styling of the buttons' titles. Do:
This lets you do some adjustments, but still quite limited. Particularly, you cannot freely modify where the text is placed within the button, and cannot have different colours for selected/unselected buttons. If you want to do more specific text layout, just set |
||||
|
|
|
for me its very simple to change the color of Tabbar like :-
Try this!!! |
|||
|
|
|
Another solution (which is a hack) is to set the alpha on the tabBarController to 0.01 so that it is virtually invisible yet still clickable. Then set a an ImageView control on the bottom of the MainWindow nib with your custom tabbar image underneath the alpha'ed tabBarCOntroller. Then swap the images, change colors or hightlight when the tabbarcontroller switches views. However, you lose the '...more' and customize functionality. |
|||
|
|
|
Hi There am using iOS SDK 4 and i was able to solve this issue with just two lines of code and it's goes like this
Hope this helps! |
|||
|
|
|
||||
|
|

