0
如何將mathwidget添加爲另一個UIViewController中的子視圖 目前,加載UIViewController時mathwidget工作正常。 讓subViewEE = MathWidgetClassName() self.present(subViewEE,動畫:真,完成:無)MyScript如何將mathwidget添加爲另一個UIViewController中的子視圖
但是,當我試圖將其添加爲當前視圖控制器裏面什麼也沒有一個子視圖顯示出來,這裏是代碼:
let mathWidget= MathWidgetClassName()
self.addChildViewController(mathWidget)
self.view.addSubview(mathWidget.view)
mathWidget.didMove(toParentViewController: self)
任何人都可以幫助顯示MathWidget作爲當前UIViewController的子視圖嗎?
'MathWidgetClassName '是'UIVIewController'的子類? – Lion