开发者

MFMailComposerView attach images

开发者 https://www.devze.com 2023-03-07 16:15 出处:网络
how to 开发者_高级运维attach images from iphone saved photo album to MFMailComposerView and send through mail...plese help me..is there any sample application source code availableSay image is the ima

how to 开发者_高级运维attach images from iphone saved photo album to MFMailComposerView and send through mail...plese help me..is there any sample application source code available


Say image is the image you want to attach.

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.
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号