MFMailComposeViewController附件文件

时间:2012-06-21 06:57:48

标签: iphone ipad

当我使用MFMailComposeViewController将文件附加到邮件时,数据会在签名之前附加,此签名与单独的文件.txt相关联。 是否可以在签名后显示附件?

1 个答案:

答案 0 :(得分:2)

如果您要发送图像数据或图像文件(根据您的描述不清楚),请根据您发送的文件类型进行更改 在按钮动作中     UIImage *imageName =[UIImage imageNamed:@"splash_sml.png"]; IMgdata = UIImagePNGRepresentation(imageName);

并在displayComposerSheet方法中添加此

[picker addAttachmentData:IMgdata
                 mimeType:@"image/png"
                 fileName:@"content-id"];