我制作了一个UIScrollView并添加了2个子视图。(View1,View2)
因此,如果我滑动了页面,则可以向下翻页,因为我设置了.isPagingEnabled = true。
现在我在View1中创建一个按钮。
我想做的就是单击此按钮时更改View2。
具体来说,请按分页模式更改视图。(与滚动不同)
button.addTarget(self, action: #selector(downBtnTapped), for: .touchUpInside)
@objc func downBtnTapped() {
if verticalScroll.contentOffset.y < self.view.bounds.height * CGFloat(2) {
verticalScroll.contentOffset.y += self.view.bounds.height
}
}
如果我尝试使用较高代码,则直接直接查看视图,而不像分页模式
我该如何解决这个问题?