Flutter iOS Embedder
FlutterTouchInterceptingView Class Reference

#import <FlutterPlatformViews_Internal.h>

Inheritance diagram for FlutterTouchInterceptingView:

Instance Methods

(instancetype) - initWithEmbeddedView:platformViewsController:gestureRecognizersBlockingPolicy:
 
(void) - releaseGesture
 
(void) - blockGesture
 
(UIView *) - embeddedView
 
(id) - accessibilityContainer
 

Properties

id flutterAccessibilityContainer
 

Detailed Description

Definition at line 541 of file FlutterPlatformViews.mm.

Method Documentation

◆ accessibilityContainer

- (id) accessibilityContainer

Provided by category FlutterTouchInterceptingView(Tests).

◆ blockGesture

- (void) blockGesture

Definition at line 604 of file FlutterPlatformViews.mm.

604  {
605  switch (_blockingPolicy) {
607  // We block all other gesture recognizers immediately in this policy.
608  self.delayingRecognizer.state = UIGestureRecognizerStateEnded;
609 
610  // On iOS 18.2, WKWebView's internal recognizer likely caches the old state of its blocking
611  // recognizers (i.e. delaying recognizer), resulting in non-tappable links. See
612  // https://github.com/flutter/flutter/issues/158961. Removing and adding back the delaying
613  // recognizer solves the problem, possibly because UIKit notifies all the recognizers related
614  // to (blocking or blocked by) this recognizer. It is not possible to inject this workaround
615  // from the web view plugin level. Right now we only observe this issue for
616  // FlutterPlatformViewGestureRecognizersBlockingPolicyEager, but we should try it if a similar
617  // issue arises for the other policy.
618  if (@available(iOS 18.2, *)) {
619  // This workaround is designed for WKWebView only. The 1P web view plugin provides a
620  // WKWebView itself as the platform view. However, some 3P plugins provide wrappers of
621  // WKWebView instead. So we perform DFS to search the view hierarchy (with a depth limit).
622  // Passing a limit of 0 means only searching for platform view itself; Pass 1 to include its
623  // children as well, and so on. We should be conservative and start with a small number. The
624  // AdMob banner has a WKWebView at depth 7.
625  if ([self containsWebView:self.embeddedView remainingSubviewDepth:1]) {
626  [self removeGestureRecognizer:self.delayingRecognizer];
627  [self addGestureRecognizer:self.delayingRecognizer];
628  }
629  }
630 
631  break;
633  if (self.delayingRecognizer.touchedEndedWithoutBlocking) {
634  // If touchesEnded of the `DelayingGesureRecognizer` has been already invoked,
635  // we want to set the state of the `DelayingGesureRecognizer` to
636  // `UIGestureRecognizerStateEnded` as soon as possible.
637  self.delayingRecognizer.state = UIGestureRecognizerStateEnded;
638  } else {
639  // If touchesEnded of the `DelayingGesureRecognizer` has not been invoked,
640  // We will set a flag to notify the `DelayingGesureRecognizer` to set the state to
641  // `UIGestureRecognizerStateEnded` when touchesEnded is called.
642  self.delayingRecognizer.shouldEndInNextTouchesEnded = YES;
643  }
644  break;
645  default:
646  break;
647  }
648 }

References embeddedView, FlutterPlatformViewGestureRecognizersBlockingPolicyEager, and FlutterPlatformViewGestureRecognizersBlockingPolicyWaitUntilTouchesEnded.

◆ embeddedView

◆ initWithEmbeddedView:platformViewsController:gestureRecognizersBlockingPolicy:

- (instancetype) initWithEmbeddedView: (UIView*)  embeddedView
platformViewsController: (FlutterPlatformViewsController*)  platformViewsController
gestureRecognizersBlockingPolicy: (FlutterPlatformViewGestureRecognizersBlockingPolicy blockingPolicy 

Definition at line 542 of file FlutterPlatformViews.mm.

542  :(UIView*)embeddedView
543  platformViewsController:(FlutterPlatformViewsController*)platformViewsController
544  gestureRecognizersBlockingPolicy:
546  self = [super initWithFrame:embeddedView.frame];
547  if (self) {
548  self.multipleTouchEnabled = YES;
549  _embeddedView = embeddedView;
550  embeddedView.autoresizingMask =
551  (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
552 
553  [self addSubview:embeddedView];
554 
555  ForwardingGestureRecognizer* forwardingRecognizer =
556  [[ForwardingGestureRecognizer alloc] initWithTarget:self
557  platformViewsController:platformViewsController];
558 
559  _delayingRecognizer =
560  [[FlutterDelayingGestureRecognizer alloc] initWithTarget:self
561  action:nil
562  forwardingRecognizer:forwardingRecognizer];
563  _blockingPolicy = blockingPolicy;
564 
565  [self addGestureRecognizer:_delayingRecognizer];
566  [self addGestureRecognizer:forwardingRecognizer];
567  }
568  return self;
569 }

References embeddedView.

◆ releaseGesture

- (void) releaseGesture

Definition at line 585 of file FlutterPlatformViews.mm.

585  {
586  self.delayingRecognizer.state = UIGestureRecognizerStateFailed;
587 }

Property Documentation

◆ flutterAccessibilityContainer

- (id) flutterAccessibilityContainer
readwritenonatomicretain

Definition at line 150 of file FlutterPlatformViews_Internal.h.


The documentation for this class was generated from the following files:
FlutterPlatformViewGestureRecognizersBlockingPolicyWaitUntilTouchesEnded
@ FlutterPlatformViewGestureRecognizersBlockingPolicyWaitUntilTouchesEnded
Definition: FlutterPlugin.h:269
ForwardingGestureRecognizer
Definition: FlutterPlatformViews.mm:720
FlutterDelayingGestureRecognizer
Definition: FlutterPlatformViews.mm:671
FlutterPlatformViewGestureRecognizersBlockingPolicyEager
@ FlutterPlatformViewGestureRecognizersBlockingPolicyEager
Definition: FlutterPlugin.h:261
FlutterPlatformViewGestureRecognizersBlockingPolicy
FlutterPlatformViewGestureRecognizersBlockingPolicy
Definition: FlutterPlugin.h:252
FlutterPlatformViewsController
Definition: FlutterPlatformViewsController.h:30
-[FlutterTouchInterceptingView embeddedView]
UIView * embeddedView()