iphone - 在 iOS 中使用电子邮件 uri 方案的附件
<p><p>我正在实现一个 iphone 应用程序 (iOS 4.2),我想从该应用程序触发电子邮件客户端发送带有附件的消息。我可以有效地结合使用 uri 方案和类 NSURL 来触发电子邮件应用程序,但我想知道是否可以附加图像。我曾尝试使用 mailto:[email protected]?subject=sthg&body=sthgelse&attachment=/path/to/file 但附件不包括在内。我知道 iphone 应用程序是沙盒的,因此电子邮件实用程序可能无法访问我的图像的路径,因为它位于我的应用程序包中。另一方面,我正在考虑使用照片管理器管理我的图像。 (1)有没有办法以这种方式包含附件? (2) 如果是这样,是否可以从我的应用程序或照片客户端引用图像?我在 mailto RFC 中找不到任何附件参数,但也许 Apple 提供了一些方法来实现这一点。</p>
<p>提前感谢您的帮助,</p>
<p>路易斯</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>MFMailComposeViewController 将能够做到这一点,下面的一些使用示例:
记得添加 MessageUI.framework</p>
<pre><code>MFMailComposeViewController *email = [ init];
email.mailComposeDelegate = self;
;
// Set up recipients
NSArray recipients = ;
;
// Attach an image to the email
UIImage *attachment = ...;
NSData *data = UIImagePNGRepresentation(attachment);
;
// Fill out the email body text
NSString *emailBody = @"test mail";
;
;
;
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 在 iOS 中使用电子邮件 uri 方案的附件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8833916/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8833916/
</a>
</p>
页:
[1]