Reputation: 975
I have in-app email using the MessageUI Framework. Everything works fine with the MFMailComposeViewController, but I want to change the title color from black to white. As of now, it looks like this:
I also want to change the bar button items to white. I was able to achieve all of this with all of my other views, but I simply don't know how to do this with an MFMailComposeViewController.
Upvotes: 3
Views: 1395
Reputation: 23882
Set Title Text Attributes Of Navigation Bar in MFMailComposeViewController
MFMailComposeViewController *mailVc = [[MFMailComposeViewController alloc] init];
mailVc.mailComposeDelegate = self;
[[mailVc navigationBar] setTitleTextAttributes:[NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:NSForegroundColorAttributeName]];
Upvotes: 6