Detect direction of UIScrollView scroll in scrollViewWillBeginDragging

后端 未结 9 1820
心在旅途
心在旅途 2020-12-17 09:30

I did google enough, & I did check posts like these ( Finding the direction of scrolling in a UIScrollView? ) in stackoverflow before posting this. I have a dynamic numb

9条回答
  •  时光取名叫无心
    2020-12-17 10:11

    Thank you, Kris. This is what worked for me, finally:

    - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
        // Detect the scroll direction
        if (lastContentOffset < (int)scrollView.contentOffset.x) {
        ...
        }
    }
    

提交回复
热议问题