Browse Source

Handle simultaneous recognizers (#5029)

* Handle simultaneous recognizers

Fixes a crash when tapping on the screen with other gesture recognizers active.

* Remove unneeded respondsToSelector override
Jordan Phillips 5 years ago
parent
commit
a5b9f58aff
1 changed files with 0 additions and 8 deletions
  1. 0
    8
      lib/ios/InteractivePopGestureDelegate.m

+ 0
- 8
lib/ios/InteractivePopGestureDelegate.m View File

@@ -15,12 +15,4 @@
15 15
 	}
16 16
 }
17 17
 
18
-- (BOOL)respondsToSelector:(SEL)aSelector {
19
-	if (aSelector == @selector(gestureRecognizer:shouldReceiveTouch:)) {
20
-		return YES;
21
-	} else {
22
-		return [self.originalDelegate respondsToSelector:aSelector];
23
-	}
24
-}
25
-
26 18
 @end