我正在编写一个具有通用表单的应用程序,该表单会根据用户在表单中输入的内容进行调整和更改,然后他们会通过并回答表单中较低的问题,因此我在代码中进行了答案检查以使其工作,当用户单击提交时,邮件撰写 View Controller 加载正常,然后他们单击发送并发送电子邮件,但没有调用 didFinishWithResult 函数,这意味着 Composer 不会解雇。请看下面我的代码:
@IBAction func Submit(sender: AnyObject) {
if SelectedTalkLabel.text! == "Safe Breaking Ground - Toolbox Talk" && ASwitch.on && BSwitch.on && DSwitch.on && !(CSwitch.on) || SelectedTalkLabel.text! == "Loading & Unloading Vehicles - Toolbox Talk" && ASwitch.on && BSwitch.on && CSwitch.on && !(DSwitch.on) || SelectedTalkLabel.text! == "Orteco - Toolbox Talk" && ASwitch.on && CSwitch.on && !(BSwitch.on) && !(DSwitch.on) {
let toRecipents = ["[email protected]"]
let emailTitle = "New ToolBox Talk Submission received!"
let messageBody = String(format: "")
let mc : MFMailComposeViewController = MFMailComposeViewController()
mc.mailComposeDelegate = self
mc.setToRecipients(toRecipents)
mc.setSubject(emailTitle)
mc.setMessageBody(messageBody, isHTML: false)
self.presentViewController(mc, animated: true, completion: nil)
}
func mailComposeController(controller: MFMailComposeViewController, didFinishWithResult result: MFMailComposeResult, error: NSError?) {
switch result.rawValue {
case MFMailComposeResultCancelled.rawValue:
print("cancelled")
self.dismissViewControllerAnimated(true, completion: nil)
case MFMailComposeResultFailed.rawValue:
print("failed")
AudioServicesPlayAlertSound(SystemSoundID(kSystemSoundID_Vibrate))
self.dismissViewControllerAnimated(true, completion: nil)
case MFMailComposeResultSaved.rawValue:
print("saved")
self.dismissViewControllerAnimated(true, completion: nil)
case MFMailComposeResultSent.rawValue:
print("sent")
self.dismissViewControllerAnimated(true, completion: nil)
default:
break
}
if SelectedTalkLabel.text! == "Safe Breaking Ground - Toolbox Talk" && !(ASwitch.on) || !(BSwitch.on) || !(DSwitch.on) || SelectedTalkLabel.text! == "Loading & Unloading Vehicles - Toolbox Talk" && !(ASwitch.on) || !(BSwitch.on) || !(CSwitch.on) || SelectedTalkLabel.text! == "Orteco - Toolbox Talk" && !(ASwitch.on) || !(CSwitch.on) {
let WrongAlert = UIAlertController(title: "Wrong Answer!", message: "You have selected the wrong answers, please go back and try again", preferredStyle: .Alert)
let WrongDismiss = UIAlertAction(title: "Okay", style: .Cancel, handler: {
(alert: UIAlertAction!) -> Void in
})
WrongAlert.addAction(WrongDismiss)
self.presentViewController(WrongAlert, animated: true, completion: nil)
}
}
这类似于我在应用程序中使用的其他形式的代码,根本不使用戏剧。如果有人可以尝试帮助我解决这个问题,将不胜感激。干杯。
我遇到了同样的问题,并且正在寻找过去 2 天的修复程序,然后我自己找到了一个修复程序,你不会相信它是多么小。
在我的情况下,我正在展示 MFMailComposeViewController
的 View Controller (根据这个问题说“DetailsTableViewController”,根据这个问题,您的“提交”按钮存在)已经从其他一些 View Controller 呈现(比如“BaseViewController”)。
问题在于“DetailsTableViewController”的“modalPresentationStyle
”,同时从 BaseViewController 呈现它。
当我将它从 'UIModalPresentationFormSheet
' 更改为 'UIModalPresentationPageSheet
' 时(就此而言,除了 'UIModalPresentationFormSheet
' 之外的任何东西)问题得到解决,邮件 Controller 委托(delegate)方法开始照常触发。
注意:我已经在 'DetailsTableViewController' 中调用了以下方法(对于本示例),因此我使用的是哪个 'modalPresentationStyle
' 对我来说并不重要。
- (void)viewWillLayoutSubviews{
[super viewWillLayoutSubviews];
self.view.superview.bounds = CGRectMake(0, 0, 1024, 768);
self.view.superview.backgroundColor = [UIColor clearColor];
}
希望这也能解决您的问题。
关于ios - 未调用 MFMailComposeViewController didFinishWithResult,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37721463/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |