我有2个viewcontrollers。第一个应该占据屏幕的主要部分,第二个应该位于底部
如何让底部视图控制器向上滑动以占据整个屏幕
答案 0 :(得分:1)
您可以使用UIViewController的addchildViewController
方法
基本上当你想要显示其他VC时。先做这个
let vc = SecondVC()
self.addChildViewController(vc)
self.view.addSubView(vc.view)
//now set constraints or set the vc.view frame to whatever position you want