我正在使用MFMailComposeViewController
撰写带有附件的电子邮件,并且工作正常
现在,我想使用本机电子邮件客户端来编写带有附件的图像。我在下面使用代码
NSString *customURL =[NSString stringWithFormat:@"googlegmail:///co?to=[t0]&subject=[subject]&body=[body]"];
NSURL *url = [NSURL URLWithString:customURL];
if ([[UIApplication sharedApplication]
canOpenURL:url])
{
[[UIApplication sharedApplication] openURL:url options:@{} completionHandler:^(BOOL success) {
NSLog(@"%d",success);
}];
}
else
{
//not installed, show popup for a user or an error
}
在主题和正文上都可以正常工作,但是我无法附加附件(例如:Zip文件,屏幕截图)。
在使用gmail或任何其他客户端应用程序时,可以通过任何方式添加附件。