ios addSubview不在uiscrollview中滚动

时间:2016-04-29 18:48:06

标签: ios uiview uiscrollview swift2

我在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

1 个答案:

答案 0 :(得分:0)

使用

设置scrollview的内容大小
contentSize = CGSize(width: yourwidth, height: contentsizeheight)