我在Xcode的swift 2.0中工作,我面临一个问题,我想在故事板的UIView
中替换/添加子视图。
这是我的代码:
self.addChildViewController(vc)
vc.view.frame = childView.frame
self.container.addSubview(vc.view)
vc.didMoveToParentViewController(self)
但是我成功添加了subview
并且UIScrollView
已经childView
UIView
被放置了...但是在放置subview
后,我无法使用UIScrollview
滚动添加的视图,但其他内容滚动正常。
如何在我的childView
中替换/添加子视图以使用UIScrollview
答案 0 :(得分:0)
使用
设置scrollview的内容大小contentSize = CGSize(width: yourwidth, height: contentsizeheight)