我有MFMailComposeViewController
在我的应用中建立联系我们频道。我想在电子邮件中添加技术细节我如何实现这一目标?
[mailer setToRecipients:toRecipients];
[[mailer navigationBar]setTintColor:DEFAULT_COLOR];
[mailer setMessageBody:@"" isHTML:NO];
[self presentViewController:mailer animated:YES completion:^(void){}];
无法使用setMessageBody
方法,因为该消息将由用户编写
解决方案是什么?