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 722 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:action:forwardingRecognizer:

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

Definition at line 520 of file FlutterPlatformViews.mm.

724  :(id)target
725  action:(SEL)action
726  forwardingRecognizer:(UIGestureRecognizer*)forwardingRecognizer {
727  self = [super initWithTarget:target action:action];
728  if (self) {
729  self.delaysTouchesBegan = YES;
730  self.delaysTouchesEnded = YES;
731  self.delegate = self;
732  _shouldEndInNextTouchesEnded = NO;
733  _touchedEndedWithoutBlocking = NO;
734  _forwardingRecognizer = forwardingRecognizer;
735  }
736  return self;
737 }

Property Documentation

◆ forwardingRecognizer

- (UIGestureRecognizer*) forwardingRecognizer
readwritenonatomicassign

Definition at line 183 of file FlutterPlatformViews_Internal.h.

◆ shouldEndInNextTouchesEnded

- (BOOL) shouldEndInNextTouchesEnded
readwritenonatomicassign

Definition at line 177 of file FlutterPlatformViews_Internal.h.

◆ touchedEndedWithoutBlocking

- (BOOL) touchedEndedWithoutBlocking
readwritenonatomicassign

Definition at line 181 of file FlutterPlatformViews_Internal.h.


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