are there any alternatives to using the accessor setTintColor for UIBarButtonItems in order to add ios4 compatibility?

is it possible to modify the setter to include a conditional statement for systemVersion (without subclassing UIBarButtonItem)?

link|improve this question

33% accept rate
did you figure this out? I'm also in need of this – André Cytryn Apr 17 at 17:52
feedback

1 Answer

There are three approaches to do this. First, is to draw a button with CoreGraphic. Second, use a custom image. The third approach is probably the easiest and allows you to use a tintColor property for dynamic changes if wanted.

The idea is to create a UISegmentedControl and stylize it to look like a button and use that tintColor property to change the color of the "button".

You can find specific details at this webpage http://charles.lescampeurs.org/2011/02/10/tint-color-uibutton-and-uibarbuttonitem .

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.