判断scrollView 的滚动方向

    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 的滚动方向)