我在同一个ViewControllerA中有ViewControllerA和一个子视图。我想知道如何将ViewContorllerA的outlet标签值传递给它的subView。
答案 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)