In my app I am using the MFMailComposeViewController. I have placed a back
and Done
button in the title bar. I have the title bar to be in black color, but I have the button background in blue color. How to change the button background color to black
in color?
You first have to change the button style:
barButton.style = UIBarButtonItemStyleBordered;
Afterwards, the color of the navigation bar buttons can be changed with the following code:
[[mailComposer navigationBar] setTintColor:[UIColor blackColor]];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With