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 co
back
Done
You first have to change the button style: barButton.style = UIBarButtonItemStyleBordered;
barButton.style = UIBarButtonItemStyleBordered;
Afterwards, the color of the navigation bar buttons can be changed with the following code:
[[mailComposer navigationBar] setTintColor:[UIColor blackColor]];