在应用程序中发送电子邮件并在swift中填充消息

时间:2015-05-20 14:39:11

标签: ios swift email messageui

我正在尝试将电子邮件发送功能添加到我的应用

现在我已经从教程中尝试了一些事情,但遗憾的是没有成功

现在我首先希望能够让我messageUI弹出我已设置的按钮,但我不能,因为我一写mailComposer.mailComposeDelegate = self我得到一个错误,说代表不能。另外,我需要将MFMailComposeViewController添加到我的班级,但我从ViewController

获得了多重继承

任何帮助将不胜感激

感谢

1 个答案:

答案 0 :(得分:0)

class testViewContoller : UIViewController, MFMailComposeViewControllerDelegate {
  func tapButton() -> Void {
    var mailVC = MFMailComposeViewController()
    mailVC.mailComposeDelegate = self

    self.presentViewController(mailVC, animated:false, completion:nil)

  }
}