muZZkat/NMRangeSlider

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

Opened this issue · 3 comments

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

I have the same problem.

You can try adding this to the NMRangeSlider.m file

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

This fix worked for me. Thanks @matteinn.