iPad 中的邮件功能
我已使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能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.邮件发送的健全性检查
Sanity Check for mail sending