获取错误MFMailComposeViewController:过滤包ID的邮件表帐户

时间:2018-05-05 10:22:43

标签: ios swift

我正在使用swift 4进行iOS项目,测试设备是iOS 11。 我正在尝试发送这样的电子邮件:

func sendEmail(mailBody : String) {
        if MFMailComposeViewController.canSendMail() {
            let mail = MFMailComposeViewController()
            mail.mailComposeDelegate = self
            mail.setMessageBody(mailBody, isHTML: false)

            self.present(mail, animated: true)
        } else {
            // show failure alert
        }
    }

但它产生了这个:

[MC] Filtering mail sheet accounts for bundle ID: com.s-dev, source account management: 1

为什么?

0 个答案:

没有答案