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

1088  :(id)target
1089  action:(SEL)action
1090  forwardingRecognizer:(UIGestureRecognizer*)forwardingRecognizer {
1091  self = [super initWithTarget:target action:action];
1092  if (self) {
1093  self.delaysTouchesBegan = YES;
1094  self.delaysTouchesEnded = YES;
1095  self.delegate = self;
1096  self.shouldEndInNextTouchesEnded = NO;
1097  self.touchedEndedWithoutBlocking = NO;
1098  _forwardingRecognizer.reset([forwardingRecognizer retain]);
1099  }
1100  return self;
1101 }

References shouldEndInNextTouchesEnded.

Property Documentation

◆ shouldEndInNextTouchesEnded

- (bool) shouldEndInNextTouchesEnded
readwritenonatomicassign

Definition at line 961 of file FlutterPlatformViews.mm.

Referenced by initWithTarget:action:forwardingRecognizer:.

◆ touchedEndedWithoutBlocking

- (bool) touchedEndedWithoutBlocking
readwritenonatomicassign

Definition at line 965 of file FlutterPlatformViews.mm.


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