vote up 5 vote down star
12

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?

flag

6 Answers

vote up 10 vote down check

I have been able to make it work by subclassing a UITabBarController and using private classes:

@interface UITabBarController (private)
- (UITabBar *)tabBar;
@end

@implementation CustomUITabBarController


- (void)viewDidLoad {
    [super viewDidLoad];

    CGRect frame = CGRectMake(0.0, 0.0, self.view.bounds.size.width, 48);
    UIView *v = [[UIView alloc] initWithFrame:frame];
    [v setBackgroundColor:kMainColor];
    [v setAlpha:0.5];
    [[self tabBar] addSubview:v];
    [v release];

}
@end
link|flag
This is sort of an odd solution in that it just places semi transparent brown rectangle on top of the tabbar. The problem is that all the buttons are turned brown, not just the background. However this seems to be the best option anyone's presented so far. – Jonah Aug 18 at 20:04
vote up 0 vote down

when you just use addSubview your buttons will loose clickability, so instead of

[[self tabBar] addSubview:v];

use:

[[self tabBar] insertSubview:v atIndex:0];
link|flag
vote up 1 vote down

[v setBackgroundColor ColorwithRed: Green: Blue: ];

link|flag
vote up 0 vote down

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?

link|flag
vote up 0 vote down

Thanks. Bug filed in radar!

link|flag
vote up 3 vote down

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.

link|flag
Sir, did you filled up a bug with apple? – sagar Oct 30 at 18:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.