mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-26 13:25:51 +08:00
API for cancelling RCTTouchHandler
Reviewed By: spicyj Differential Revision: D2846573 fb-gh-sync-id: 652864c773d03c24f0d68dd8335401eb052fc1bf
This commit is contained in:
committed by
facebook-github-bot-5
parent
528e30987a
commit
c14cc123d5
@@ -123,6 +123,25 @@ extern NSString *const RCTContentDidAppearNotification;
|
||||
*/
|
||||
@property (nonatomic, strong) UIView *loadingView;
|
||||
|
||||
/**
|
||||
* Calling this will result in emitting a "touches cancelled" event to js,
|
||||
* which effectively cancels all js "gesture recognizers" such as as touchable
|
||||
* (unless they explicitely ignore cancellation events, but noone should do that).
|
||||
*
|
||||
* This API is exposed for integration purposes where you embed RN rootView
|
||||
* in a native view with a native gesture recognizer,
|
||||
* whose activation should prevent any in-flight js "gesture recognizer" from activating.
|
||||
*
|
||||
* An example would be RN rootView embedded in an UIScrollView.
|
||||
* When you touch down on a touchable component and drag your finger up,
|
||||
* you don't want any touch to be registered as soon as the UIScrollView starts scrolling.
|
||||
*
|
||||
* Note that this doesn't help with tapping on a touchable element that is being scrolled,
|
||||
* unless you can call cancelTouches exactly between "touches began" and "touches ended" events.
|
||||
* This is a reason why this API may be soon removed in favor of a better solution.
|
||||
*/
|
||||
- (void)cancelTouches;
|
||||
|
||||
/**
|
||||
* Timings for hiding the loading view after the content has loaded. Both of
|
||||
* these values default to 0.25 seconds.
|
||||
|
||||
Reference in New Issue
Block a user