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.

If I change the tint of a UIBarbutton how can I reset it to it's default tint.

Here I am set a custom tint for a button...

examCancelButton.style = UIBarButtonSystemItemCancel;
examCancelButton.tintColor = myRedButtonTint;

Then later I need to set it back to it's default style and tint. So I thought just setting the style to UIBarButtonItemStyleDone would do the trick like this...

examCancelButton.style = UIBarButtonItemStyleDone;

But the color remains red. I can set it to a nice blue color on my own, but I would like to get the default color of a UIBarButtonItemStyleDone button. Is this possible?

Thanks, John

share|improve this question
Did you try setting tintColor to nil? – wquist Jul 12 '12 at 19:57

1 Answer

up vote 7 down vote accepted

examCancelButton.tintColor = nil;

share|improve this answer
Perfiect!! Thanks!!! – user278859 Jul 12 '12 at 20:01

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.