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

2 Answers2

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
  • 4,399
  • 1
  • 26
  • 27
1

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

Kishore
  • 184
  • 1
  • 11