I'm trying to figure out how this is done the right way. I've tried to depict the situation in this image.

I'm adding a UITableView as a subview of a UIView. The UIView responds to a tap- and pinchGestureRecognizer, but when doing so, the tableview stops reacting to those two gestures (it still reacts to swipes).

I've made it work with the following code, but it's obviously not a nice solution and I'm sure there is a better way. This is put in the UIView (the superview):

-(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    if([super hitTest:point withEvent:event] == self) {
        for (id gesture in self.gestureRecognizers) {
            [gesture setEnabled:YES];
        }
        return self;
    }
    for (id gesture in self.gestureRecognizers) {
        [gesture setEnabled:NO];
    }
    return [self.subviews lastObject];
}
link|improve this question

25% accept rate
feedback

2 Answers

up vote 5 down vote accepted

One possibility is to subclass your gesture recognizer (if you haven't already) and override -touchesBegan:withEvent: such that it determines whether each touch began in an excluded subview and calls -ignoreTouch:forEvent: for that touch if it did. Obviously, you'll also need to add a property to keep track of the excluded subview, or perhaps better, an array of excluded subviews.

link|improve this answer
Yes that solution I like much more. Didn't think of that. Thanks – andershqst Mar 8 '11 at 17:42
feedback

I had a very similar problem and found my solution in this SO question. In summary, set yourself as the delegate for your UIGestureRecognizer and then check the targeted view before allowing your recognizer to process the touch. The relevant delegate method is:

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
link|improve this answer
I like this solution the most as it doesn't involve messing with the touches, hitTest:withEvent: or pointInside:withEvent:. – DarkDust Jul 25 '11 at 10:26
1  
Much cleaner than accepted answer. +1 – joern Feb 1 at 10:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.