Problems with gesture recognizer in iOS 7 Problems with gesture recognizer in iOS 7 ios ios

Problems with gesture recognizer in iOS 7


Because the problem is only occurring in iOS 7, you can use one of the new delegate methods to resolve the issue:

– gestureRecognizer:shouldRequireFailureOfGestureRecognizer:– gestureRecognizer:shouldBeRequiredToFailByGestureRecognizer:

I resolved it by implementing gestureRecognizer:shouldBeRequiredToFailByGestureRecognizer and "crawling" up the gesture's view's superview so I could return "YES" if I find the superview's gesture is equal to the one provided. I detail my full resolution here: https://stackoverflow.com/a/19659848/1147934.

Explanation
The problem with gesture recognizers in iOS 7 is that a superview's gesture is receiving its touches before one of its subview gestures receives its touches. This causes the superview gesture to recognize which then cancels out the sub view's recognizer... this is (incorrect?) and multiple bugs have been filed with Apple. It's been pointed out that Apple doesn't guarantee the order in which gestures receive touches. I think a lot of "us" have been relying on an implementation detail that changed in iOS 7. This is why we use the new delegate methods, which seem designed to help us address this problem.

Note: I did extensive testing by using my own sublcassed recognizers, logging all touches and discovered that the reason recognizers fail is because superview gestures were receiving touches before a subview's gesture was in about ~5% of the cases. Every time this happened, failure occurred. This does happen more often if you have "deep" hierarchies with lots of gestures.

The new delegate methods can be confusing, so you need to read them carefully.

I'm using the method (I've renamed the arguments to make them easier to understand)

– gestureRecognizer:(UIGestureRecognizer *)thisRecognizer shouldBeRequiredToFailByGestureRecognizer:(UIGestureRecognizer *) otherRecognizer.

If you return "YES", then the gesture recognizer provided, otherRecognizer, will require thisRecognizer to fail before it can be recognized. This is why, in my answer, I crawl up the superview hierarchy to check if it contains a superview that has the otherRecognizer. If it does, I want otherRecognizer to require thisRecognizer to fail because thisRecognizer is in a subview and should fail before it's superview's gesture is recognized. This will make sure that subview gestures are recognized before their superview's gestures are. Make sense?

Alternative
I could go about it the other way around and use:

– gestureRecognizer:(UIGestureRecognizer *)thisRecognizer shouldRequireFailureOfGestureRecognizer:(UIGestureRecognizer *)otherRecognizer

Now I would need to crawl through my entire subview hierarchy, check if otherRecognizer is in it and return YES if it is. I don't use this method because crawling the entire subview hierarchy is much more difficult and expensive to do than to check a superview hierarchy. Crawling a subview hierarchy would have to be a recursive function, while I can use a simple while loop to check a superview's hierarchy. So I recommend the first approach I outline.

Warning!
Be careful about using gestureRecognizer:shouldReceiveTouch:. The issue is a problem of which gesture receives touches first (canceling the other gesture out)... it's a problem of conflict resolution. If you implement gestureRecognizer:shouldReceiveTouch:, you risk rejecting a superview's gesture if the subview gesture fails because you have to guess when a subview gesture might be recognized. A subview gesture may legitimately fail for reasons other than the touches are out of bounds, so you would have to know implementation details in order to guess correctly. You want the superview gesture to be recognized when the subview gesture fails but you don't really have anyway to know for certain if it will fail before it actually fails. If a subview gesture fails, normally you want the superview gesture to then recognize. This is the normal responder chain (subview superview) and if you mess with that you could end up with unexpected behavior.


I have made some changes in your code and I also have tested it much and problem is not generating.

While creating view I set tag to each view to distinguish it:

View1234 *v1 = [[View1234 alloc] initWithId:@"1"];v1.tag =1;v1.backgroundColor = [UIColor redColor];v1.frame = CGRectMake(0, 0, 320, 460);View1234 *v2 = [[View1234 alloc] initWithId:@"2"];v2.tag=2;v2.backgroundColor = [UIColor greenColor];v2.frame = CGRectMake(0, 0, 160, 230);View1234 *v3 = [[View1234 alloc] initWithId:@"3"];v3.tag=3;v3.backgroundColor = [UIColor blueColor];v3.frame = CGRectMake(0, 0, 80, 115);View1234 *v4 = [[View1234 alloc] initWithId:@"4"];v4.tag=4;v4.backgroundColor = [UIColor orangeColor];v4.frame = CGRectMake(0, 0, 40, 50);

View1234.h

@interface View1234 : UIView <UIGestureRecognizerDelegate> {    NSString *vid;}- (id) initWithId:(NSString *)vid_;@end

And following is whole code of View1234.m

- (id) initWithId:(NSString *)vid_ {    if (self = [super init]) {        vid = [vid_ retain];        UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] init];        tapGesture.delegate = self;        tapGesture.numberOfTapsRequired = 1;        tapGesture.numberOfTouchesRequired = 1;        [tapGesture addTarget:self action:@selector(handleTap:)];        [self addGestureRecognizer:tapGesture];        [tapGesture release];    }    return self;}- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch{    if (touch.view==self ) {        return YES;    }    else if ([self.subviews containsObject:touch.view] && ![touch.view isKindOfClass:[self class]])    {        return YES;    }    return NO;}/*- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer{    if ([gestureRecognizer isKindOfClass:[UITapGestureRecognizer class]]) {        if (self.tag==gestureRecognizer.view.tag) {            return YES;        }    }    return NO;}*/- (void) handleTap:(UITapGestureRecognizer *)tap {    NSLog(@"tap %@", vid);}- (void) dealloc {    [vid release];    vid = nil;    [super dealloc];}

UPDATE : Why This problem comes actually.

When you add a UIView as a subview of another UIView with UITapGestureRecognizer in each view, then in some rare case UITapGestureRecognizer state becomes Failed somehow (I have debug it more than 50 times and come to know this). So when any subview of any view is not able to handle the tap gesture then system will pass gesture to it's super view to handle that gesture, and this continues.

If you debug then you will come to know that gestureRecognizerShouldBegin is called multiple times as per hierarchy of view. In this particular case if I tap on view3 then gestureRecognizerShouldBegin will call 3 times as view3 is on 3rd level of view hierarchy, so gestureRecognizerShouldBegin will be called for view3, view2 and view1.

So to solve problem I am returning YES form gestureRecognizerShouldBegin for the correct view and NO for the rest, so it solves problem.

UPDATE 2 : I have made some change in code in my edited answer and hope will solve your problem.And also thanks to @masmor, I also found some clue from his answer to make problem solve.


Set a delegate on the recognizer and implement gestureRecognizer:shouldReceiveTouch:.

The implementation should basically block touches on subviews, but there will probably be some additional criteria according to your actual view hierarchy and setup.

The sample below simply checks if the hit view is a direct subview and if it has any gesture recognizers, in which case it is allowed to see the touches.

Blocking touches should be more robust than fiddling with recognizer states, as there is no chance for any unwanted views to fire their recognizers. The requirement of implementing custom criteria is a drawback, but again I think it's more robust to explicitly implement behavior when working around a bug of unknown cause like in this case.

#import "View1234.h"@interface View1234 () <UIGestureRecognizerDelegate>@end@implementation View1234- (id) initWithId:(NSString *)vid_ {    if (self = [super init]) {        vid = [vid_ retain];        UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] init];        tapGesture.numberOfTapsRequired = 1;        tapGesture.numberOfTouchesRequired = 1;        [tapGesture addTarget:self action:@selector(handleTap:)];        tapGesture.delegate = self;        [self addGestureRecognizer:tapGesture];        [tapGesture release];    }    return self;}//- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer{//    //    if ([gestureRecognizer isKindOfClass:[UITapGestureRecognizer class]]) {//        if (self.tag==gestureRecognizer.view.tag) {//            return YES;//        }//    }//    //    return NO;//}- (void) handleTap:(id)tap {    NSLog(@"tap %@", vid);}- (void) dealloc {    [vid release];    vid = nil;    [super dealloc];}- (BOOL)shouldReceiveTouchOnView:(UIView *)hitView {  NSLog(@"Should view:\n%@\nreceive touch on view:\n%@", self, hitView);  // Replace this implementation with whatever you need...  // Here, we simply check if the view has a gesture recognizer and  // is a direct subview.  BOOL res = (hitView.gestureRecognizers.count == 0 &&              [self.subviews containsObject:hitView]);  NSLog(@"%@", res? @"YES":@"NO");  return res;}#pragma mark - Gesture Recognizer Delegate- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer       shouldReceiveTouch:(UITouch *)touch {  UIView *hitView = [self hitTest:[touch locationInView:self.superview]                        withEvent:nil];  if (hitView == self) {    NSLog(@"Touch not in subview");    return YES;  }  return [self shouldReceiveTouchOnView:hitView];}@end