如何在邮件编辑器中附加两个图像

时间:2012-08-17 06:20:43

标签: iphone email ios5

我正在制作一个iPhone项目,用于在邮件中插入两张图片。从照片库中选择图像,并将它们存储在两个单独的图像视图中。当我在电子邮件中附加图像时,它无法正确附加。

1 个答案:

答案 0 :(得分:0)

您可以创建一个html页面代码并将该图像作为标记插入,并将整个html作为字符串传递给MFMailComposer for Body。它看起来很酷。 你需要写这一行

MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init];
        controller.mailComposeDelegate = self;
        if ([recipentArray count]>0) 
        {
            [controller setToRecipients:self.recipentArray];
        }
        [controller setSubject:self.emailSubject];
        [controller setMessageBody:self.messageBody isHTML:YES]; // isHTML -> YES/NO depending the message body
        [object presentModalViewController:controller   animated:YES];
        RELEASE_SAFELY(controller);

一旦您实施 MFMailComposer ,如果您在正文中使用html页面,则需要设置 bool 。让我知道您是否有任何疑问。