Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to speed up scrolling in UIScrollView? [closed]

I want to make paging/scrolling in UIScrollView to be faster, so when the user lefts his finger the next page will come faster than normal regardless the speed of the acceleration.

like image 931
4mahmoud Avatar asked Feb 08 '13 19:02

4mahmoud


2 Answers

Tweak the decelerationRate of your UIScrollView.

More reading: UIScrollView Class Reference

like image 75
Jeremy Avatar answered Oct 21 '22 21:10

Jeremy


If I understand your question correctly, you've setup the ScrollView to snap to pages (pagingEnabled = YES). When the the user lifts their finger you want it to snap to the closest page quicker than what it currently does?

If that's what you're trying to accomplish, this is what I recommend:

  • DISABLE pagingEnabled (pagingEnabled = NO). We're going to do it ourselves.
  • Setup some object (probably the ViewController) as a delegate of the scroll view.
  • In the Scrollview delegate, override the method scrollViewDidEndDragging:willDecelerate:. You will also want to override the method scrollViewWillEndDragging:withVelocity:targetContentOffset: so that you can get the velocity of the drag.
  • In the scrollViewDidEndDragging:willDecelerate:, you can calculate the direction of the drag (using the velocity you got from the other method) and the offset to the nearest page. From there, it's as simple as setting the contentOffset of the scrollview using a UIView animation block with the desired duration. For example:

[UIView animateWithDuration:.25f animations:^{ scrollview.contentOffset = calculatedCGPoint; }];

That should give you the desired effect.

like image 31
Aaron Hayman Avatar answered Oct 21 '22 23:10

Aaron Hayman