Flutter iOS Embedder
FlutterDelayingGestureRecognizer Class Reference

#import <FlutterPlatformViews_Internal.h>

Inheritance diagram for FlutterDelayingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:action:forwardingRecognizer:
 

Properties

BOOL shouldEndInNextTouchesEnded
 
BOOL touchedEndedWithoutBlocking
 
UIGestureRecognizer * forwardingRecognizer
 

Detailed Description

Definition at line 686 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:action:forwardingRecognizer:

- (instancetype) initWithTarget: (id)  target
action: (SEL)  action
forwardingRecognizer: (UIGestureRecognizer*)  forwardingRecognizer 

Definition at line 510 of file FlutterPlatformViews.mm.

688  :(id)target
689  action:(SEL)action
690  forwardingRecognizer:(UIGestureRecognizer*)forwardingRecognizer {
691  self = [super initWithTarget:target action:action];
692  if (self) {
693  self.delaysTouchesBegan = YES;
694  self.delaysTouchesEnded = YES;
695  self.delegate = self;
696  _shouldEndInNextTouchesEnded = NO;
697  _touchedEndedWithoutBlocking = NO;
698  _forwardingRecognizer = forwardingRecognizer;
699  }
700  return self;
701 }

Property Documentation

◆ forwardingRecognizer

- (UIGestureRecognizer*) forwardingRecognizer
readwritenonatomicassign

Definition at line 174 of file FlutterPlatformViews_Internal.h.

◆ shouldEndInNextTouchesEnded

- (BOOL) shouldEndInNextTouchesEnded
readwritenonatomicassign

Definition at line 168 of file FlutterPlatformViews_Internal.h.

◆ touchedEndedWithoutBlocking

- (BOOL) touchedEndedWithoutBlocking
readwritenonatomicassign

Definition at line 172 of file FlutterPlatformViews_Internal.h.


The documentation for this class was generated from the following files: