Giter VIP home page Giter VIP logo

Comments (7)

NRJMons avatar NRJMons commented on July 21, 2024 6

I confirm that VittoriDavide's solution perfectly works, thanks a lot, here is the swift equivalent

open override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool { if gestureRecognizer.isKind(of: UIPanGestureRecognizer.self) { let gesture = gestureRecognizer as! UIPanGestureRecognizer let velocity = gesture.velocity(in: self) return abs(velocity.y)>abs(velocity.x) } else { return true } }

This is to place inside class RangeSeekSlider defnition

from rangeseekslider.

VittoriDavide avatar VittoriDavide commented on July 21, 2024 4

I was using TTRangeSlider the version in objective-c and I had the same issue in the modal of iOS 13.

I was able to solve the problem blocking the gesture on the Range Slider

- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {
    if([gestureRecognizer isKindOfClass:UIPanGestureRecognizer.class]){
        UIPanGestureRecognizer *gesture = (UIPanGestureRecognizer *)gestureRecognizer;
        CGPoint velocity = [gesture velocityInView:self];
        return fabs(velocity.y) > fabs(velocity.x);
    }
    return true;
}

from rangeseekslider.

phongnn9x avatar phongnn9x commented on July 21, 2024 2

I have the same issue with the latest version

from rangeseekslider.

SteveBlackUK avatar SteveBlackUK commented on July 21, 2024

Trying the swift version above and it hasn't solved the issue for me on a modal.

To confirm @NRJMons - you added this inside the below within RangeSeekSlider.swift ?

@IBDesignable open class RangeSeekSlider: UIControl {

from rangeseekslider.

philosopherdog avatar philosopherdog commented on July 21, 2024

Another solution is to not use it in IB but add it programmatically. It works then.

from rangeseekslider.

r3econ avatar r3econ commented on July 21, 2024

I added

    open override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
        if gestureRecognizer.isKind(of: UIPanGestureRecognizer.self) {
            let gesture = gestureRecognizer as! UIPanGestureRecognizer
            let velocity = gesture.velocity(in: self)
            return abs(velocity.y)>abs(velocity.x)
        } else {
            return true
        }
    }

in RangeSeekSlider.swift and it worked for me

from rangeseekslider.

PatilManoj1717 avatar PatilManoj1717 commented on July 21, 2024

I am still facing this issue by following above solutions.

from rangeseekslider.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.