2

I want to Change the UIBarButtonItem Color, which is the sub view of UIToolBar,

My problem is if i change the toolber tint color , the barbuttonitems color are changing automatically ,how can i differ them...

nikey
  • 237
  • 2
  • 10
  • 18

3 Answers3

3

This question has been asked before. Please see these answers:

Community
  • 1
  • 1
Mehul Mistri
  • 14,954
  • 14
  • 67
  • 94
2

Yes that's the behavior of UIBarButton. You need to make custom image and assign it to UIBarbutton. That's the only solution according to me.

Deeps
  • 3,722
  • 1
  • 22
  • 24
1

Just Use the below code: [YourBarButton setTintColor:[UIColor blackColor]];

Kishore
  • 184
  • 1
  • 11