我正在构建一个应用程序,您可以使用日期选择器选择所需的日期。单击按钮后,日期将显示为标签和文本字段。我有一个单独的按钮,可以创建电子邮件。如何将选定的日期合并到电子邮件正文中?任何帮助将不胜感激。
答案 0 :(得分:1)
在打开mfmailcomposer表时,请在电子邮件代码中尝试此代码。
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:yoursubject];
NSString *emailBody = [NSString stringWithFormat:@"%@",yourlabel.text];
[picker setMessageBody:emailBody isHTML:YES];
[self presentModalViewController:picker animated:YES];
[picker release];