0
我是IOS新手。我創建了包含2個視圖控制器(ViewControllerA和ViewControllerB)的容器視圖。我添加了按鈕,並在ViewControllerA中爲其創建動作,但無法使用(不可點擊)。我們可以在ViewControllerA和ViewControllerB中創建按鈕嗎?如何解決這個問題?如何在容器視圖中添加IOS?
self.addChildViewController(vc)
vc.view.frame = CGRect(x: 0,y: 0, width: self.view.frame.width, height: self.view.frame.height)
self.view.addSubview(vc.view)
vc.didMoveToParentViewController(self)
你如何添加'ViewControllerA'? –
選擇按鈕並檢查是否在IB – Harris
中檢查了啓用用戶交互功能是的,我檢查了啓用了哪一項。但它不起作用 –