我有一个带有矩形框架的scrollView来显示一组子视图并将它们分页,我希望隐藏其他子视图,只显示当前内容,但我将所有这些重叠放到我的屏幕上。
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框架已正确设置但其内容仍未被隐藏。