電子メール送信オプションを備えたアプリを設定しようとしています。
次のようなコードがあります:
import Foundation
import MessageUI
import UIKit
class emailClass: UIViewController, MFMailComposeViewControllerDelegate {
override func viewDidLoad() {
super.viewDidLoad()
if !MFMailComposeViewController.canSendMail() {
print("Mail services are not available")
return
}
sendEmail()
}
func sendEmail() {
let composeVC = MFMailComposeViewController()
composeVC.mailComposeDelegate = self
// Configure the fields of the interface.
composeVC.setToRecipients(["[email protected]"])
composeVC.setSubject("Hello!")
composeVC.setMessageBody("Hello this is my message body!", isHTML: false)
// Present the view controller modally.
self.present(composeVC, animated: true, completion: nil)
}
func mailComposeController(controller: MFMailComposeViewController,
didFinishWithResult result: MFMailComposeResult, error: NSError?) {
// Check the result or perform other tasks.
// Dismiss the mail compose view controller.
controller.dismiss(animated: true, completion: nil)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
「メール サービスは利用できません」というメッセージが表示されます。iCloud でシミュレーター デバイスにログインしました... これで解決するはずだと思うのですが、うまくいきません。なぜうまくいかないのでしょうか。何が問題なのか、どうすれば先に進めますか。
ベストアンサー1
シミュレータでは動作しません。iPhoneデバイスでテストしてください。Apple 開発者ポータル - MFMailComposeViewController