Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Gesture not recognized ?

Hello,

I have a class, let's call it SomeClass subclass of UView. In the init method, I'm adding a tap gesture. But it doesn't trigger the method. My view of SomeClass will be instantiated by a view controller. The hierarchy is kind of: ViewController --> MainView --> ScrollView --> UIView --> ViewOfSomeClass The tap on the scrollview is triggered but not the one of ViewOfSomeClass

override init(frame: CGRect) {
        super.init(frame: CGRect.zero)
        self.isUserInteractionEnabled = true
        let tapGesture = UITapGestureRecognizer(target: self, action: #selector(tapOnWebSticker(gestureRecognizer:)))
        tapGesture.delegate = self
        tapGesture.cancelsTouchesInView = false
        self.addGestureRecognizer(tapGesture)
        self.setup()
    }