Search code examples
iphoneiosinterfacetoolbartint

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...


Solution

  • 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...