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;

 

posted @ 2018-06-07 18:19  sundaysios  阅读(195)  评论(0)    收藏  举报