我想通过在文本字段中输入一些文本并提交它来让我的用户向我发送改进建议(希望就是这个词)。该过程应如下所示:
我该怎么做?好吧,我已经有了第1步到第3步,只是第4步就是我遇到了麻烦。
这实际上是可行的,如果是的话,怎么样?
答案 0 :(得分:1)
使用MFMailComposeViewController绝对可以做到这一点。 然后你可以写
let composeVC = MFMailComposeViewController()
//...further setup...
composeVC.setMessageBody("This is my proposal:", isHTML: false)
composeVC.setToRecipients(["myadress@example.com"])
self.presentViewController(composeVC, animated: true, completion: nil)