MFMailComposerView附加图像

时间:2011-05-21 02:37:57

标签: iphone

如何将iphone保存的相册中的图像附加到MFMailComposerView并通过邮件发送...请帮助我..是否有任何示例应用程序源代码可用

1 个答案:

答案 0 :(得分:1)

image是您要附加的图片。

NSData *attachmentData = UIImageJPEGRepresentation(image, 1.0);

...

MFMailComposeViewController *mailComposer = [[MFMailComposeViewController alloc] init];
...
[mailComposer addAttachmentData:attachmentData mimeType:@"image/jpeg" fileName:@"attachment.jpeg"];
...
// Push it on to the screen.
相关问题