如何在两个ViewController之间传递数据而不会造成困扰

时间:2019-05-26 16:11:30

标签: swift uiviewcontroller

我尝试更新viewController中的标签。但是我有一个问题,什么也没显示。 我使用SPStorkController。 https://github.com/IvanVorobei/SPStorkController 在我的StorkController中,我具有带有下一个功能的按钮: 所以我必须返回到以前的vc并更新Label

@objc func pressButton(_ sender: UIButton){
        print("Hello")

        self.dismiss(animated: true, completion: nil)
        let vc = DietViewController()
        vc.currentWaterLabel?.text = "20"

    }

0 个答案:

没有答案