我有使用MessageUI Framework的应用内电子邮件。 MFMailComposeViewController一切正常,但我想将标题颜色从黑色更改为白色。截至目前,它看起来像这样:
我还想将条形按钮项更改为白色。我能够通过所有其他视图实现所有这些功能,但我根本不知道如何使用MFMailComposeViewController执行此操作。
答案 0 :(得分:6)
在MFMailComposeViewController
MFMailComposeViewController *mailVc = [[MFMailComposeViewController alloc] init];
mailVc.mailComposeDelegate = self;
[[mailVc navigationBar] setTitleTextAttributes:[NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:NSForegroundColorAttributeName]];