i know how to change the navigation bar to primary colors like green and red but if want to set custom color to a navigation bar .Custom colors like dark green .How is it possible.

UINavigationBar *bar = [self.navigationController navigationBar]; 
[bar setTintColor:[UIColor redColor]]; 

This is code using how i have set red color to navigation bar but how can i set darkgreen color or any other custom colors to navigation bar. Thanks

link|improve this question

67% accept rate
feedback

2 Answers

up vote 6 down vote accepted

Using RGB values like this:

UINavigationBar *bar = [self.navigationController navigationBar];
[bar setTintColor:[UIColor [UIColor colorWithRed:0.5 green:0.5 blue:0.5 alpha:1.0]]];
link|improve this answer
1  
Thanks this is working but can i know what will be the RGB value for dark Green color – Rani Apr 7 '11 at 7:36
i have got the color but i now want to make my bar little opaque .How is it possible.Thanks – Rani Apr 7 '11 at 7:49
feedback
[bar setTintColor:[UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0]]

There are many other ways of getting your color from different kinds of components as described in the documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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