如何将ViewContorller的出口值传递给它的subView Swift

时间:2017-10-08 06:22:58

标签: swift viewcontroller subview pass-data

我在同一个ViewControllerA中有ViewControllerA和一个子视图。我想知道如何将ViewContorllerA的outlet标签值传递给它的subView。

1 个答案:

答案 0 :(得分:0)

请尝试使用此方法。我想这对你来说是完整的。将您的出口价值传递到这里。

           let destVC = self.storyboard?.instantiateViewController(withIdentifier: "CategoryDescriptionViewController_id") as? CategoryDescriptionViewController

            destVC?.aTitleText = ""

            destVC?.aDescText = ""

            destVC?.view.frame = CGRect(x: 0, y: 0, width: self.view.frame.size.width, height: self.view.frame.size.height)
            self.addChildViewController(destVC ?? UIViewController())
            self.view.addSubview((destVC?.view)!)
            destVC?.didMove(toParentViewController: self)