swift2 从上一个视图控制器获取数据

o2gm4chl  于 2022-11-06  发布在  Swift
关注(0)|答案(2)|浏览(181)

我正在尝试从上一个视图控制器中获取值。我在上一个视图中有一个TextField,我希望该文本在下一个视图控制器中继续使用。假设我在TextField中写入“5”,我希望它在下一个视图中显示在标签上。这可能吗?我该怎么做?

nimxete2

nimxete21#

您需要的是称为prepareForSegue()的文件,其中包含您需要的所有信息,并将其发送到下一个ViewController

des4xlb0

des4xlb02#

let vc = self.storyboard?.instantiateViewControllerWithIdentifier("YOUR_IDENTIFIER") as! YOUR_CONTROLLER

//Setup the properties
vc.PROPERTY = "DATA"   //this property variable has to be there in your destination view controller

self.presentViewController(vc, animated: true, completion: nil)

或者您可以使用prepareForSegue:

相关问题