我正在使用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
为什么?