Definition at line 974 of file FlutterPlatformViews.mm.
◆ gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:
- (BOOL) gestureRecognizer: |
|
(UIGestureRecognizer*) |
gestureRecognizer |
shouldRecognizeSimultaneouslyWithGestureRecognizer: |
|
(UIGestureRecognizer*) |
otherGestureRecognizer |
|
|
| |
|
implementation |
Definition at line 1129 of file FlutterPlatformViews.mm.
1188 :(UIGestureRecognizer*)gestureRecognizer
1189 shouldRecognizeSimultaneouslyWithGestureRecognizer:
1190 (UIGestureRecognizer*)otherGestureRecognizer {
1191 return YES;
1192}
◆ initWithTarget:platformViewsController:
Definition at line 1129 of file FlutterPlatformViews.mm.
1133 platformViewsController:
1135 self = [super initWithTarget:target action:nil];
1136 if (self) {
1137 self.delegate = self;
1141 }
1142 return self;
1143}
#define FML_DCHECK(condition)
std::shared_ptr< flutter::FlutterPlatformViewsController > _platformViewsController
◆ touchesBegan:withEvent:
- (void) touchesBegan: |
|
(NSSet*) |
touches |
withEvent: |
|
(UIEvent*) |
event |
|
|
| |
|
implementation |
Definition at line 1129 of file FlutterPlatformViews.mm.
1145 :(NSSet*)touches withEvent:(
UIEvent*)
event {
1148
1149
1150
1152 }
1153 [_flutterViewController.get() touchesBegan:touches withEvent:event];
1155}
◆ touchesCancelled:withEvent:
- (void) touchesCancelled: |
|
(NSSet*) |
touches |
withEvent: |
|
(UIEvent*) |
event |
|
|
| |
|
implementation |
Definition at line 1129 of file FlutterPlatformViews.mm.
1174 :(NSSet*)touches withEvent:(
UIEvent*)
event {
1175
1176
1177
1178
1179
1180 [_flutterViewController.get() forceTouchesCancelled:touches];
1183 self.state = UIGestureRecognizerStateFailed;
1185 }
1186}
◆ touchesEnded:withEvent:
- (void) touchesEnded: |
|
(NSSet*) |
touches |
withEvent: |
|
(UIEvent*) |
event |
|
|
| |
|
implementation |
Definition at line 1129 of file FlutterPlatformViews.mm.
1161 :(NSSet*)touches withEvent:(
UIEvent*)
event {
1162 [_flutterViewController.get() touchesEnded:touches withEvent:event];
1164
1165
1166
1167
1169 self.state = UIGestureRecognizerStateFailed;
1171 }
1172}
◆ touchesMoved:withEvent:
- (void) touchesMoved: |
|
(NSSet*) |
touches |
withEvent: |
|
(UIEvent*) |
event |
|
|
| |
|
implementation |
Definition at line 1129 of file FlutterPlatformViews.mm.
1157 :(NSSet*)touches withEvent:(
UIEvent*)
event {
1158 [_flutterViewController.get() touchesMoved:touches withEvent:event];
1159}
The documentation for this class was generated from the following file: