有谁知道我们如何在不显示 MFMailComposerView 的情况下发送邮件?
或者
有什么办法可以在 MFMailComposerView 上添加背景图像?
我尝试改变背景颜色。它不起作用。我唯一能做的就是改变 navigationBar Tint 颜色
代码:
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
picker.navigationBar.tintColor=[UIColor blackColor];
picker.view.backgroundColor=[UIColor brownColor];
提前致谢!