iPhone UIScrollView Speed Check

There’s an easier way: check the UISCrollview’s pan gesture recognizer. With it, you can get the velocity like so:

CGPoint scrollVelocity = [[_scrollView panGestureRecognizer] velocityInView:self];

Leave a Comment