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.

The background color for my view in RGB format is R: 111/255 G: 209/255 B: 229/255

I tried setting the tint of the UIBarButtonItem using:

CGFloat nRed=111.0/255.0;
CGFloat nGreen=209.0/255.0;
CGFloat nBlue=229/255.0;
UIColor *myColor=[[UIColor alloc]initWithRed:nRed green:nBlue blue:nGreen alpha:1];
[[UIBarButtonItem appearance] setTintColor:myColor];

The color does change for all the UIBarButtonItems I have in the project...but it is still noticeably different from the color of my background. Any thoughts?

share|improve this question
What's the name of the button you're trying to change? '[UIBarButtonItem appearance]' applies the settings to all. Is it leftBarButtonItem, rightBarButtonItem, or backBarbuttonItem? – jhilgert00 Jul 19 '12 at 23:08
as for the color difference, I always specify a float for my values, like so: nBlue = 229.0f/255.0f, instead of just the numbers. Works for me. – jhilgert00 Jul 19 '12 at 23:10
1  
you are passing nBlue to green and nGreen to blue :) – flagg19 Sep 6 '12 at 15:01

1 Answer

up vote 0 down vote accepted

You don't need to call the appearance method. Just do this:

//Suppose you have a variable barButtonItem
barButtonItem.tintColor = [UIColor blueColor];
share|improve this answer
I called appearance method because I am using navigation controllers that auto add in UIBarButtonItems spread across several views, and didn't want to go through and set tintColor property for each one. – user717452 Jul 19 '12 at 22:03

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.