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

Method Documentation

◆ initWithTarget:action:forwardingRecognizer:

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

Definition at line 515 of file FlutterPlatformViews.mm.

693  :(id)target
694  action:(SEL)action
695  forwardingRecognizer:(UIGestureRecognizer*)forwardingRecognizer {
696  self = [super initWithTarget:target action:action];
697  if (self) {
698  self.delaysTouchesBegan = YES;
699  self.delaysTouchesEnded = YES;
700  self.delegate = self;
701  _shouldEndInNextTouchesEnded = NO;
702  _touchedEndedWithoutBlocking = NO;
703  _forwardingRecognizer = forwardingRecognizer;
704  }
705  return self;
706 }

Property Documentation

◆ forwardingRecognizer

- (UIGestureRecognizer*) forwardingRecognizer
readwritenonatomicassign

Definition at line 178 of file FlutterPlatformViews_Internal.h.

◆ shouldEndInNextTouchesEnded

- (BOOL) shouldEndInNextTouchesEnded
readwritenonatomicassign

Definition at line 172 of file FlutterPlatformViews_Internal.h.

◆ touchedEndedWithoutBlocking

- (BOOL) touchedEndedWithoutBlocking
readwritenonatomicassign

Definition at line 176 of file FlutterPlatformViews_Internal.h.


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