Flutter iOS Embedder
DelayingGestureRecognizer Class Reference
Inheritance diagram for DelayingGestureRecognizer:

Instance Methods

(instancetype) - initWithTarget:action:forwardingRecognizer:
 

Properties

bool shouldEndInNextTouchesEnded
 
bool touchedEndedWithoutBlocking
 

Detailed Description

Definition at line 934 of file FlutterPlatformViews.mm.

Method Documentation

◆ initWithTarget:action:forwardingRecognizer:

- (instancetype) initWithTarget: (id)  target
action: (SEL)  action
forwardingRecognizer: (UIGestureRecognizer*)  forwardingRecognizer 
Initial value:
{
fml::scoped_nsobject<UIGestureRecognizer> _forwardingRecognizer

Definition at line 1065 of file FlutterPlatformViews.mm.

1065  :(id)target
1066  action:(SEL)action
1067  forwardingRecognizer:(UIGestureRecognizer*)forwardingRecognizer {
1068  self = [super initWithTarget:target action:action];
1069  if (self) {
1070  self.delaysTouchesBegan = YES;
1071  self.delaysTouchesEnded = YES;
1072  self.delegate = self;
1073  self.shouldEndInNextTouchesEnded = NO;
1074  self.touchedEndedWithoutBlocking = NO;
1075  _forwardingRecognizer.reset([forwardingRecognizer retain]);
1076  }
1077  return self;
1078 }

References shouldEndInNextTouchesEnded.

Property Documentation

◆ shouldEndInNextTouchesEnded

- (bool) shouldEndInNextTouchesEnded
readwritenonatomicassign

Definition at line 938 of file FlutterPlatformViews.mm.

Referenced by initWithTarget:action:forwardingRecognizer:.

◆ touchedEndedWithoutBlocking

- (bool) touchedEndedWithoutBlocking
readwritenonatomicassign

Definition at line 942 of file FlutterPlatformViews.mm.


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