Reputation: 5522
I want to change the tint of the buttons in the toolbar.
I've seen this question but I don't know how to access the toolbar object...
Upvotes: 0
Views: 1278
Reputation: 1579
self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:0.83 green:0.43 blue:0.57 alpha:0.5];
considering you are writing this line of code in your viewcontroller...
Upvotes: 3
Reputation: 4277
I found this Tint UIButton and UIBarButtonItem hope that helps !
Upvotes: 0