ios – 将数据从模态segue传递给父级

前端之家收集整理的这篇文章主要介绍了ios – 将数据从模态segue传递给父级前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将数据(例如set var)从modal segue传递给parent,我该怎么做?

我正在使用该代码退出模态segue:

@IBAction func doneClicked(sender: AnyObject) {
    self.dismissViewControllerAnimated(true,completion: nil)
}

我不能在这里使用segue.destinationViewController传递数据,就像我以前在push segues上做的那样.

解决方法

在Modal ViewController上创建协议
protocol ModalViewControllerDelegate
{
    func sendValue(var value : NSString)
}

同样在你的Modal ViewController类中声明

var delegate:ModalViewControllerDelegate!

在ParentViewController中包含此协议ModalViewControllerDelegate

当您从一个viewController移动到另一个viewController时

modalVC.delegate=self;
        self.presentViewController(modalVC,animated: true,completion: nil)

在这里,您可以在ParentViewcontroller中获得您的价值

func sendValue(value: NSString) {

    }

最后在ModalViewController上

@IBAction func doneClicked(sender: AnyObject) {
delegate?.sendValue("value")
    self.dismissViewControllerAnimated(true,completion: nil)
}
原文链接:https://www.f2er.com/iOS/332943.html

猜你在找的iOS相关文章