Todd Davies
Todd Davies

Reputation: 5522

Change tint color of the toolbar

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

Answers (2)

Obaid Maroof
Obaid Maroof

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

Ali Abbas
Ali Abbas

Reputation: 4277

I found this Tint UIButton and UIBarButtonItem hope that helps !

Upvotes: 0

Related Questions