Gesture Recognizer Blocking TouchesEnded

547 Views Asked by At

In my app, a user taps three times and an angle is drawn with drawRect. This used to work perfectly until recently. I added a gesture recognizer to the parent view, a uiview, (the drawing occurs on a child of this view, a subclassed uiview). Now, when I tap, the drawing subclass doesn't call touches ended, but if I move my finger, touchesMoved gets called on the subclass. I know the issue is the gesture recognizer on the parent because when I remove it, everything goes back to normal. Why is this happening? Any input would be appreciated, thanks.

1

There are 1 best solutions below

1
On BEST ANSWER

I had similar issue - I couldn't touch a button and I manage to sorted it with this code:

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
     // Replace to your view with button
    if ((touch.view isDescendantOfView:YOURVIEW))
    {
        return NO;
    }
    return YES;
}

Try replace text YOURVIEW with the view you have this issue with and remember to set up delegate to your gesture recogniser.