Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the following code in 'viewDidLoad' of the various view controllers of my tabbed app.

    UIColor *tabBarColor = [UIColor colorWithRed:85.1 green:57.6 blue:71.4 alpha:.5];
    [[UITabBar appearance] setTintColor:tabBarColor];

But the image that I get, which ought to be pink, is this:

enter image description here

I can make it lighter or darker by changing the alpha, but never colored--only black/white/gray.

Any thoughts about how I can solve this problem?

share|improve this question
Instead of setTintColor property try setBackgroundColor – Madhu Dec 3 '12 at 7:33

4 Answers

up vote 4 down vote accepted

Under header files in .m write this line #define RGB(r, g, b) [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:1] now where you are setting color put this code for pink color [[UITabBar appearance] setTintColor:RGB(255, 192, 203)]; that's all

share|improve this answer
Thank you so much! Now I just have to learn what "#define" means/does.... – Joel Derfner Dec 3 '12 at 8:31

Try this:

   if ([tabBarController.tabBar respondsToSelector:@selector(setTintColor:)]) 
    {
        [tabBarController.tabBar setTintColor: tabBarColor];
    }
share|improve this answer

Colors must come with decimal point after the number: 215.0/255. Because it's float.
If you want to be precise with floats and doubles on 32bit and 64bit systems you also should add f after the number: 215.0f/255. The compiler will know it's 32bit. Now your problem is you didn't write the divide mark: N_OF_COLORS / TOTAL_COLORS.

share|improve this answer

UIColor *tabBarColor = [UIColor colorWithRed:85.1 green:57.6 blue:71.4 alpha:.5]

Colors must come with decimal point after the number: 215.0/255. Because it's float.

try this:

UIColor *tabBarColor = [UIColor colorWithRed:(87/255.0) green:(153/255.0) blue:(165/255.0) alpha:1];


[[UITabBar appearance] setTintColor:tabBarColor];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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