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.

can we change the color/tint of a uibarbuttonitem when it is selected and it highlights? The app i am creating will be be used out doors often and would like it to be more noticeable in high glare situations for the user to know that he actually pressed the button.

EDIT: i would like to change the color for the button's highlighted state

share|improve this question

2 Answers

up vote 0 down vote accepted

I haven't tried this, but you could try subclassing UIBarButtonItem and then overriding the touchesEnded:withEvent: and touchesBegan:withEvent: methods and then using them to set the tintColor for your UIBarButtonItem instance.

You'd add this to your UIBarButtonItem subclass:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    self.tintColor = [UIColor redColor];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
    self.tintColor = [UIColor blueColor];
}
share|improve this answer
possible, but wouldn't touchesEnded end when the user lifts his finger off the screen and thus reverting back to original color? where as i am looking to keep the new color until the code has executed. this could work as a fall back, to at least better show that the user did press the button. – Log139 Nov 1 '11 at 17:09
...OK so in that case just omit touchesEnded:withEvent: from my example...? – jon Nov 1 '11 at 17:39
i suppose at the end of the method i could reset the tintColor to normal... i'll give it a try, thanks. – Log139 Nov 1 '11 at 20:03

A UIButton is a subclass of UIControl which has an adjustsImageWhenHighlighted, an showsTouchWhenHighlighted and a showsTouchWhenHighlighted property.

A UIBarButtonItem is a subclass of UIBarItem and has none of these. It does however have a UIBarButtonItemStyle which when set to UIBarButtonItemStylePlain which says for the button to glow when tapped (but you can't specify the color).

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.