ios – 如何在Swift中使用performSegueWithIdentifier执行segue时传递参数

前端之家收集整理的这篇文章主要介绍了ios – 如何在Swift中使用performSegueWithIdentifier执行segue时传递参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Perform Segue programmatically and pass parameters to the destination view5个
我以编程方式调用segue,任何人都可以帮助我如何传递参数?
@IBAction func update(sender: AnyObject) {

    self.performSegueWithIdentifier("showUpdate",sender: nil)
}

解决方法

斯威夫特4:
override func prepare(for segue: UIStoryboardSegue,sender: Any?) {
    if segue.identifier == "ExampleSegueIdentifier" {
        if let destinationVC = segue.destination as? ExampleSegueVC {
            destinationVC.exampleStringProperty = "Example"
        }
    }
}

斯威夫特3:

override func prepareForSegue(segue: UIStoryboardSegue,sender: AnyObject?) {
        if segue.identifier == "ExampleSegueIdentifier" {
            if let destinationVC = segue.destinationViewController as? ExampleSegueVC {
                destinationVC.exampleStringProperty = "Example"
            }
        }
    }
原文链接:https://www.f2er.com/iOS/335074.html

猜你在找的iOS相关文章