如何将 textView 的内容作为电子邮件发送?

发布于 2025-01-07 12:49:54 字数 120 浏览 2 评论 0原文

我有一个应用程序,其中有使用 textView 显示的最喜欢的报价。我想提供直接从此文本视图发送电子邮件的选项。其次,我希望能够导出为 PDF 或 Pages 文档,然后我可以通过电子邮件发送出去。有什么办法可以做到这一点吗?

I have an app that has favorite quotes that are displayed using a textView. I want to provide the option of emailing directly from this textView. Secondly I would like to be able export to a PDF or Pages document, which I can then email out. Is there any way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初与友歌 2025-01-14 12:49:54

沿着 textView 放置一个 UIButton 并像这样发送电子邮件

-(void)sendEmail 

{
 

 MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
 picker.mailComposeDelegate = self;
 
 [picker setSubject:urSubject];
 
  NSString *emailBody =
 [NSString stringWithString:urTextView.text];
 
 [picker setMessageBody:emailBody isHTML:NO];  
 
 [self presentModalViewController:picker animated:YES];
 [picker release];
 
}

place a UIButton along the textView and send email like this

-(void)sendEmail 

{
 

 MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
 picker.mailComposeDelegate = self;
 
 [picker setSubject:urSubject];
 
  NSString *emailBody =
 [NSString stringWithString:urTextView.text];
 
 [picker setMessageBody:emailBody isHTML:NO];  
 
 [self presentModalViewController:picker animated:YES];
 [picker release];
 
}
一笔一画续写前缘 2025-01-14 12:49:54

对于电子邮件,您应该使用 MFMailComposerViewController。要导出它,您首先需要生成 pdf。然后将其作为附件添加到邮件中。您可以按照本教程在 iPhone 中生成 pdf 进行操作。希望有帮助。

For emailing, you should use MFMailComposerViewController. To export it, you would first require to generate a pdf. And then add it as an attachment to a mail. You can follow this tutorial on generating pdfs in iPhone. Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文