UIScrollView不显示动态添加的内容

时间:2016-04-04 19:08:35

标签: ios iphone swift uiscrollview

我需要UIScrollView的一些帮助。我正在加载内容:

for i in _start ..< _loopPages {

        let articleController = createViewController(index: i)
        viewControllers.append(articleController)
        articleController.didMoveToParentViewController(self)
        scrollView.addSubview(articleController.view)
        articleController.view.setNeedsDisplay()
    }

这是计算视图大小的函数:

func calculateScrollViewSize(){
for i in _start ..< numberOfArticles {
        let articleController = viewControllers[i]
        articleController.view.frame = view.bounds
        let x = i * Int(articleController.view.bounds.size.width)
        print("RECT: ", CGRect(origin: CGPoint(x: x, y: 0), size: view.bounds.size))
        articleController.view.frame = CGRect(origin: CGPoint(x: x, y: 0), size: view.bounds.size)
    }

    let contentWidth = CGFloat(numberOfArticles) * view.bounds.size.width
    let contentHeight = view.bounds.size.height
    scrollView.contentSize = CGSize(width: contentWidth, height: contentHeight)

    let offsetX = currentPage * Int(view.bounds.size.width)
    let offsetY = 0
    scrollView.contentOffset = CGPoint(x: offsetX, y: offsetY)
    //scrollView.contentInset.top = 0

    scrollView.setNeedsDisplay()
}

前10个视图按原样加载和显示,但是当我加载接下来的10个视图时,我得到的只是空白区域。如果我改变屏幕方向,页面会显示,但如果我不是,我得到的只是白色屏幕。我可以滚动浏览屏幕,滚动视图的大小已更新但内容未显示。当用户滚动到第10页时,正在加载下10个。你能不能告诉我这里我做错了什么。

1 个答案:

答案 0 :(得分:0)

我的问题是动态添加的视图的大小为零,所以在我将viewController(在createViewController(index:i)方法中创建的那个)的大小设置为屏幕的大小之后,一切都像魅力。

希望有一天能帮助某人。