Flutter Engine
 
Loading...
Searching...
No Matches
FlutterDelayingGestureRecognizer Class Reference

#include <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 647 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.

649 :(id)target
650 action:(SEL)action
651 forwardingRecognizer:(UIGestureRecognizer*)forwardingRecognizer {
652 self = [super initWithTarget:target action:action];
653 if (self) {
654 self.delaysTouchesBegan = YES;
655 self.delaysTouchesEnded = YES;
656 self.delegate = self;
657 _shouldEndInNextTouchesEnded = NO;
658 _touchedEndedWithoutBlocking = NO;
659 _forwardingRecognizer = forwardingRecognizer;
660 }
661 return self;
662}
uint32_t * target
const uintptr_t id

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: