美文网首页
scrollView限制滑动方向

scrollView限制滑动方向

作者: Mr_LS | 来源:发表于2019-11-28 16:13 被阅读0次

    禁止scrollView左滑的方法:

        - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
        if (scrollView.contentOffset.x>0){
        [scrollView setContentOffset:CGPointMake(0, scrollView.contentOffset.y) animated:NO];
        }
        }
    

    禁止scrollView左滑的方法:

        [_scrollView setContentSize:CGSizeMake(MAX(_maxWidth, _scrollView.bounds.size.width), 0)];
        _scrollView.scrollEnabled=NO;
    

    相关文章

      网友评论

          本文标题:scrollView限制滑动方向

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