how to send email using UIbarbuttonitem without using MFMailComposerViewController

后端 未结 2 498
我寻月下人不归
我寻月下人不归 2021-01-25 20:18

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

Any Idea how to do this?

2条回答
  •  花落未央
    2021-01-25 20:32

    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://testmailer@somemail.com"]];
    

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

提交回复
热议问题