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

Slide Tracking fail if the NMRangeSlider is in a view hierarchy that use an UIPanGestureRecognizer #32

Open
falcon283 opened this issue Aug 8, 2014 · 3 comments

Comments

@falcon283
Copy link

The issue is simply addressable by implementing - (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gesture to the class and returning NO for horizontal movements.

@falcon283 falcon283 changed the title Slide Tracking fail if T Slide Tracking fail if the NMRangeSlider is in a view hierarchy that use an UIPanGestureRecognizer Aug 8, 2014
@Asteroidhaha
Copy link

I have the same problem.

@matteinn
Copy link

You can try adding this to the NMRangeSlider.m file

  • (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {
    return NO;
    }

@ninjudd
Copy link

ninjudd commented Sep 4, 2015

This fix worked for me. Thanks @matteinn.

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

4 participants