UIScrollView不隐藏内容

时间:2016-01-29 11:47:06

标签: ios uiscrollview

我有一个带有矩形框架的scrollView来显示一组子视图并将它们分页,我希望隐藏其他子视图,只显示当前内容,但我将所有这些重叠放到我的屏幕上。

enter image description here

if scrollViewHasBeenSetUp == false {
            var index = 0
            for event in eventList.events {
                let match = getMatchCell(event)
                match.frame = CGRect(x: index * Int(matchScrollView.frame.width), y: 0, width: Int(matchScrollView.frame.width), height: Int(matchScrollView.frame.height))
                matchScrollView.contentSize = CGSize(width: Int(match.frame.width) * eventList.events.count, height: 120)
                matchScrollView.addSubview(match)
                index++
                print("cell frame: \(match.frame)")
            }
            scrollViewHasBeenSetUp = true
        }

使用视觉检查器,您可以看到scrollViews框架已正确设置但其内容仍未被隐藏。

enter image description here

1 个答案:

答案 0 :(得分:2)

您是否选择了剪辑子视图?

enter image description here

我看到你的y总是0,它是垂直滚动视图吗?