如何使用 UIbarbuttonitem 发送电子邮件而不使用 MFMailComposerViewController

发布于 2024-12-17 12:14:50 字数 135 浏览 1 评论 0原文

我想使用 rightBarButtonItem 发送电子邮件,而不使用 MFMailComposerViewController。 是否可以使用 barButtonItem 发送电子邮件?

知道如何做到这一点吗?

提前致谢。

I want to send email using rightBarButtonItem without using MFMailComposerViewController.
Is It possible to send email using barButtonItem?

Any Idea how to do this?

thanx in advance.

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

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

发布评论

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

评论(2

临风闻羌笛 2024-12-24 12:14:50

您会在此处找到关于已接受答案的精彩代码示例,用于发送后台电子邮件:

锁定字段在 MFMailComposeViewController 中,

您所需要做的就是设置 rightBarButtonItem 的目标来触发包含此电子邮件代码的方法,然后使用您想要的信息填充消息内容等 发送。

希望这有帮助!

You'll find a fantastic code sample on the accepted answer here to send a background email:

Locking the Fields in MFMailComposeViewController

All you need to do is setup your rightBarButtonItem's target to fire a method containing this email code, and then populate the message contents etc using the information you want to send.

Hope this helps!

甜中书 2024-12-24 12:14:50

为右栏按钮项设置一个操作方法,这样您就可以直接调用打开电子邮件客户端并撰写邮件。

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://[email protected]"]];

这只是一个快速解决方案,或者可能是您正在寻找的东西!

Set an action method for the right bar button item and thus, you can make a direct call to open the email client and compose a mail.

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://[email protected]"]];

This is just a quick fix or may be something you were looking for!

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