Is there a way to disable it, so that when the user stops scrolling the scroll view stops scrolling immediately rather than decelerating slowly?
Asked
Active
Viewed 5,572 times
1 Answers
0
Just add this line in ScrollView
delegate method (willBeginDecelerating
).
[scrollView setContentOffset:scrollView.contentOffset animated:NO];
References Stop deceleration of UIScrollView , How can I programmatically force-stop scrolling in a UIScrollView?

Community
- 1
- 1

vignesh kumar
- 9
- 4