MFMailComposeViewController 以编程方式调用“发送”按钮

发布于 2024-08-26 15:39:59 字数 159 浏览 8 评论 0原文

我正在尝试发送一封自动电子邮件,其中包含 UIImage 作为 当用户按下“发送照片”按钮时附件。 有什么方法可以让我们以编程方式调用 MFMailComposeViewController 中的“发送”按钮。如果没有,请建议我使用其他方法来做到这一点。 任何帮助将不胜感激。

提前致谢。

I am trying to send an automatic email with an UIImage as an
attachment when user presses 'Send Photo' button.
Is there any way that we can programmatically call the "Send" button in the MFMailComposeViewController. If not could you please suggest me some other method of doing this.
Any help will be appreciated.

Thanx in advance.

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

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

发布评论

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

评论(1

芯好空 2024-09-02 15:39:59

Apple 可能会拒绝您的提交,但如果您确实想这样做,请按以下步骤操作:

-(void)showController {
    MFMailComposeViewController *mailController;
    //alloc, init, set properties, do whatever you normally would
    [self.navigationController presentModalViewController:mailController animated:YES];
    [mailController release];

    [NSTimer scheduledTimerWithTimeInterval:3 target:self selector:@selector(hackMail:) userInfo:mailController repeats:NO];
}

-(void)hackMail:(NSTimer*)theTimer {
    MFMailComposeViewController *mailController = theTimer.userInfo;
    UIBarButtonItem *sendBtn = mailController.navigationBar.topItem.rightBarButtonItem;
    id targ = sendBtn.target;
    [targ performSelector:sendBtn.action withObject:sendBtn];
}

这将显示一个邮件控制器,等待 3 秒钟,然后发送电子邮件。快乐的黑客:)

Apple might reject your submission for this, but if you really wanna do it, here's how:

-(void)showController {
    MFMailComposeViewController *mailController;
    //alloc, init, set properties, do whatever you normally would
    [self.navigationController presentModalViewController:mailController animated:YES];
    [mailController release];

    [NSTimer scheduledTimerWithTimeInterval:3 target:self selector:@selector(hackMail:) userInfo:mailController repeats:NO];
}

-(void)hackMail:(NSTimer*)theTimer {
    MFMailComposeViewController *mailController = theTimer.userInfo;
    UIBarButtonItem *sendBtn = mailController.navigationBar.topItem.rightBarButtonItem;
    id targ = sendBtn.target;
    [targ performSelector:sendBtn.action withObject:sendBtn];
}

This will show a mail controller, wait 3 seconds, and then send the e-mail. Happy hacking :)

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