美文网首页
禁止上拉

禁止上拉

作者: 念念不忘的 | 来源:发表于2016-12-07 15:28 被阅读21次
    #pragma mark - UIScrollViewDelegate
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
        // 禁止上拉
        if (scrollView.contentOffset.y >= scrollView.contentSize.height - scrollView.bounds.size.height) {
            scrollView.contentOffset = CGPointMake(0, scrollView.contentSize.height - scrollView.frame.size.height);
        }
    }
    

    相关文章

      网友评论

          本文标题:禁止上拉

          本文链接:https://www.haomeiwen.com/subject/tzndmttx.html