如何让1个viewcontroller从底部向上滑动

时间:2016-05-18 07:39:52

标签: ios swift viewcontroller slide

我有2个viewcontrollers。第一个应该占据屏幕的主要部分,第二个应该位于底部

如何让底部视图控制器向上滑动以占据整个屏幕

1 个答案:

答案 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