iPhone App how to programmatically detect Scrolling of scrollview? iPhone App how to check scrollview did Scroll?
Asked
Active
Viewed 1,277 times
2 Answers
4
You are looking for the delegate method:
scrollViewDidScroll:(UIScrollView *)
In your implementation of that method, you can check the content offset value for the new position.
The docs are here:
Also, if you just want to know the result of the scrolling after it is finished, see this answer for a similar question: