NMRangeSlider icon indicating copy to clipboard operation
NMRangeSlider copied to clipboard

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

Open falcon283 opened this issue 9 years ago • 3 comments

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

falcon283 avatar Aug 08 '14 17:08 falcon283

I have the same problem.

Asteroidhaha avatar Sep 15 '14 17:09 Asteroidhaha

You can try adding this to the NMRangeSlider.m file

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

matteinn avatar Jan 21 '15 10:01 matteinn

This fix worked for me. Thanks @matteinn.

ninjudd avatar Sep 04 '15 22:09 ninjudd