1

Is there a way to disable it, so that when the user stops scrolling the scroll view stops scrolling immediately rather than decelerating slowly?

Proud Member
  • 40,078
  • 47
  • 146
  • 231

1 Answers1

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