Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sloppyswipe with scrollView #13

Open
enstulen opened this issue Jan 18, 2016 · 1 comment
Open

Sloppyswipe with scrollView #13

enstulen opened this issue Jan 18, 2016 · 1 comment

Comments

@enstulen
Copy link

How can I make this work with a horizontal scrollView?

@GWesley
Copy link
Contributor

GWesley commented Mar 24, 2016

@interface SloppyScrollView : UIScrollView
@EnD

- (BOOL)gestureRecognizerShouldBegin:(UIPanGestureRecognizer *)gestureRecognizer {
    CGPoint velocity = [gestureRecognizer velocityInView:self];
    if(velocity.x > 0 && self.contentOffset.x == 0) {
        return NO;
    }
    return YES;
}

try this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants