iPad 中的邮件功能

发布于 2024-12-18 07:08:16 字数 106 浏览 2 评论 0原文

我已使用 MFMailComposeViewController 在我的应用程序中实现电子邮件功能。它可以在 iPhone 上运行,但不能在 iPad 上运行。可能是什么原因?

谢谢

I have used MFMailComposeViewController to implement email functionality in my app. It is working on the iPhone but not on the iPad. What can be the reason?

Thanks

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

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

发布评论

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

评论(2

只是一片海 2024-12-25 07:08:16

可能iPad上没有设置电子邮件帐户。在呈现视图控制器之前,尝试使用 [MFMailComposeViewController canSendMail] 进行检查。

Maybe there is no email account set up on the iPad. Try to check that by using [MFMailComposeViewController canSendMail] before presenting your view controller.

向日葵 2024-12-25 07:08:16

邮件发送的健全性检查

BOOL canSendmail = [MFMailComposeViewController canSendMail];

    if (canSendmail) {
        NSLog(@"EmailPhoto can send");
    [self displayMailComposerSheet];
    }

Sanity Check for mail sending

BOOL canSendmail = [MFMailComposeViewController canSendMail];

    if (canSendmail) {
        NSLog(@"EmailPhoto can send");
    [self displayMailComposerSheet];
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文