如何使用 UIbarbuttonitem 发送电子邮件而不使用 MFMailComposerViewController
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您会在此处找到关于已接受答案的精彩代码示例,用于发送后台电子邮件:
锁定字段在 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!
为右栏按钮项设置一个操作方法,这样您就可以直接调用打开电子邮件客户端并撰写邮件。
这只是一个快速解决方案,或者可能是您正在寻找的东西!
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.
This is just a quick fix or may be something you were looking for!