couldn\'t find a solution for that.
I am building an app, with big scroll view, who has paging (Horizontal). Inside this scroll view, there is a grid of UIView\'s, and a
I think using velocity to determine the scroll direction is a better way:
- (BOOL)gestureRecognizerShouldBegin:(UIPanGestureRecognizer *)gestureRecognizer { CGPoint velocity = [gestureRecognizer velocityInView:gestureRecognizer.view]; return fabs(velocity.y) > 3 * fabs(velocity.x); }