美文网首页
判断scrollView 的滚动方向

判断scrollView 的滚动方向

作者: 进击的小巨牛 | 来源:发表于2018-07-11 15:01 被阅读12次
    CGPoint point = [scrollView.panGestureRecognizer translationInView:self.view];
    if (point.y > 0) {
        //向下滚动
    } else {
        //向上滚动
    }
    if (self.lastContentOffset > scrollView.contentOffset.y) {
        //向下滚动
    } else {
        //向上滚动
    }
    self.lastContentOffset = scrollView.contentOffset.y;
}

相关文章

网友评论

      本文标题:判断scrollView 的滚动方向

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