up vote 4 down vote favorite
7
share [g+] share [fb]

I'd like to change programmaticaly the tintColor of a UINavigationBar and keep the gradient as in Interface Builder.

When I change the tintColor in my code, the gradient disappears but when I change the tintColor in Interface Builder, the gradient is kept.

Any ideas?

link|improve this question
feedback

1 Answer

Set the barStyle to UIBarStyleBlackTranslucent Set the tintColor like this:

navigationBar.tintColor = [UIColor colorWithRed:.7 green:.5 blue:.2 alpha:1];

This will set the appropriate gradient. Use whatever combination you need.

link|improve this answer
Make that just navigationBar.tintColor = [UIColor colorWithRed: ..etc..] tintColor retains the color, so your code leaks. – Alfons Mar 9 '09 at 18:52
6  
UIBarStyleBlackTranslucent has been deprecated. Better to use navigationBar.barStyle = UIBarStyleBlack; navigationBar.translucent = YES; – Amagrammer Aug 8 '09 at 14:12
Code corrected. Thanks. – Carlos Hernandez Oct 24 '11 at 3:23
feedback

Your Answer

 
or
required, but never shown

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