Hi i am trying to get another TintColor on my BackButton in my UINavigationBar. I would like to change only the tintcolor and not to replace the whole button. Are there any suggestions on implemententing this easily?

link|improve this question

did you surf anything? – Sarah Jan 30 at 12:56
If you mean with surf, searched in the web, yeah i did. But there were only outdated entries… – mariusLAN Jan 30 at 12:59
feedback

1 Answer

up vote 1 down vote accepted

If you are using iOS5 there's a tintColor property available on UIBarButtonItem. Otherwise please check out one of the past answers such as UIBarButtonItem with color?

link|improve this answer
The main problem i got here is, that i can't access the backbarbutton. If i try to access the back button it's everytime (null). – mariusLAN Jan 30 at 14:09
You could try the following which using uiappearance to change all instances of uibarbuttonitem: [[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setTintColor:myNavBarColor]; – shawnwall Jan 30 at 15:21
This solved my Problem. thanks a lot! – mariusLAN Jan 31 at 8:12
Note that will only work in iOS5 – shawnwall Jan 31 at 23:33
yeah, thats not a problem – mariusLAN Feb 8 at 15:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.