我目前正在开发使用故事板开发的应用。
我正在尝试以编程方式将视图控制器添加到分页滚动视图中,之后在故事板中添加了2个其他视图。
添加视图控制器,但宽度略大,并进入中间视图。
let vc = Vc()
scrollView.addSubview(vc.view)
答案 0 :(得分:6)
您必须为contentSize
分配scrollview
,并为frame
ViewController
分配一个位置
scrollView.contentSize = CGSize(width: 2 * view.frame.width, height: scrollView.frame.height)
let frameVC = CGRect(x: 0, y: 0, width: view.frame.width, height: view.frame.height)
vc.view.frame = frameVC
vc.willMoveToParentViewController(self)
self.addChildViewController(vc)
vc.didMoveToParentViewController(self)
scrollView.addSubview(vc.view)
请注意,您必须更改frameVC
以符合您的要求
scrollView.contentSize = CGSize(width: 2 * view.frame.width, height: scrollView.frame.height)
let frameVC = CGRect(x: 0, y: 0, width: view.frame.width, height: view.frame.height)
vc.view.frame = frameVC
vc.willMove(toParent: self)
addChild(vc)
vc.didMove(toParent: self)
scrollView.addSubview(vc.view)
注意:框架与约束布局
除了使用框架,您还可以使用创建约束布局将UIView
添加到UIScrollView
scrollView.contentSize = CGSize(width: 2 * view.frame.width, height: scrollView.frame.height)
scrollView.addSubview(vc.view)
vc.view.translatesAutoresizingMaskIntoConstraints = false
// add constrains here
vc.willMove(toParent: self)
addChild(vc)
vc.didMove(toParent: self)