UIScrollview,UITableview,UICollectionView
UIScrollview,UITableview,UICollectionView 完全禁止弹簧效果,只需要设置bounces = false即可。
如果需要单独禁止上拉,或者下拉。
func scrollViewDidScroll(scrollView: UIScrollView) {
// 禁止下拉
if scrollView.contentOffset.y <= 0 {
scrollView.contentOffset.y = 0
}
// 禁止上拉
if scrollView.contentOffset.y >= scrollView.contentSize.height - scrollView.bounds.size.height {
scrollView.contentOffset.y = scrollView.contentSize.height - scrollView.bounds.size.height
}
}
collectionView.scrollEnabled = NO;

浙公网安备 33010602011771号