- 滚动到顶部
scrollView.setContentOffset(CGPoint(x: 0, y: 0), animated: true)
- 上拉下拉的判断
if scrollView.contentOffset.y < -100 {
// 下拉
}
if scrollView.bounds.size.height + scrollView.contentOffset.y > scrollView.contentSize.height {
// 上拉
}
scrollView.setContentOffset(CGPoint(x: 0, y: 0), animated: true)
if scrollView.contentOffset.y < -100 {
// 下拉
}
if scrollView.bounds.size.height + scrollView.contentOffset.y > scrollView.contentSize.height {
// 上拉
}
本文标题:ScrollView相关
本文链接:https://www.haomeiwen.com/subject/autcottx.html
网友评论