Przeglądaj źródła

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 lat temu
rodzic
commit
a5b9f58aff
1 zmienionych plików z 0 dodań i 8 usunięć
  1. 0
    8
      lib/ios/InteractivePopGestureDelegate.m

+ 0
- 8
lib/ios/InteractivePopGestureDelegate.m Wyświetl plik

@@ -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