参见英文答案 >
Perform Segue programmatically and pass parameters to the destination view5个
我以编程方式调用segue,任何人都可以帮助我如何传递参数?
我以编程方式调用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" } } }