In the Maps app, when you press the tracking button in the lower left hand corner, it glows showing that it's pressed. This makes it behave like a radio button, and it will un-glow once you move the map. Is there a simple way to but a button into the pressed state?

link|improve this question

feedback

3 Answers

Set its style to UIBarButtonItemStyleDone.

link|improve this answer
UIBarButtonItemStyleDone is a "blue" button. I don't think this is a glow, right? – bentford Jun 29 '11 at 23:36
Well it's not technically a glow, but it is what the Maps app does (as mentioned in the question). – Tom Irving Jul 1 '11 at 10:46
This achieves the blue, but not the glow. – tc. Nov 28 '11 at 19:29
feedback

I believe you are looking for the showsTouchWhenHighlighted property for the UIButton class. Give this a try.

myButton.showsTouchWhenHighlighted = YES;
link|improve this answer
1  
The question is about a UIBarButtonItem not a UIButton, so this is not relevant. – Emil Jun 17 '11 at 23:49
2  
It's not clear from the question detail that that is the case. And anyways, you can create a UIBarButtonItem with a UIButton, so I believe my answer is relevant. UIBarButtonItem *buttonItem = [[UIBarButtonItem alloc] initWithCustomView:myButton]; – Drewsmits Jul 21 '11 at 20:03
feedback

Use UIBarButtonItemStylePlain.

UIBarButtonItemStylePlain
Glows when tapped.

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.