gpt4 book ai didi

swift - 单击按钮时 - 在 IOS 上的 Swift 中打开电子邮件程序

转载 作者:行者123 更新时间:2023-11-30 11:32:36 24 4
gpt4 key购买 nike

我对 Swift 还很陌生,似乎找不到我的错误。

我创建了一个按钮,这是我的代码:

@IBAction func sendEmailTest(_ sender: Any) {
UIApplication.shared.open(URL(string: "mailto:test@gmail.com")! as URL,
options: [:], completionHandler: nil)
}

我想用这个打开邮件程序,我认为这应该可以工作。我做错了什么?

最佳答案

给你:

        import MessageUI


if !MFMailComposeViewController.canSendMail() {
print("Mail services are not available")
return
}
let composeVC = MFMailComposeViewController()
composeVC.mailComposeDelegate = self

composeVC.setToRecipients(["test@gmail.com"])
composeVC.setSubject("Report a Bug or Request a Feature")


self.parent?.present(composeVC, animated: true, completion: nil)

关于swift - 单击按钮时 - 在 IOS 上的 Swift 中打开电子邮件程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50101179/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com