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.

How are UIBarItems set to blue and red color?

What properties are there for the items to allow this?

share|improve this question

1 Answer

up vote 2 down vote accepted

Well, one property you can set to give a UIBarButtonItem a blue color is to set the style property to UIBarButtonItemStyleDone.

You could set the tintColor property on your UIToolBar which will also tint any UIBarButtonItems in the bar.

share|improve this answer
+1 for Simon as this is the right way without doing any custom implementation for button... – Sabby Feb 26 '11 at 4:37
Thanks, this works nicely. What is the property to get the red button, like delete. – Helium3 Feb 26 '11 at 4:48
The red color you probably need to subclass or use a custom view for. I don't know of a buit-in way to have a button with a color that is not blue or the tint color of the toolbar it is on. The answer to this SO question has some code in it that might give you a starting point. – Simon Goldeen Feb 26 '11 at 4:56

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.