I have a webview to which is attached a swipe gesture recognizer, and the gesture is picked up correctly.
Now I have an HTML file loaded in the webview with some draggable content (HTML/JQuery). When the content is being dragged, it also triggers the swipe gesture, which I do not want.
How can I prevent a swipe from being triggered when dragging content around in HTML?
UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeRightAction:)];
swipeRight.direction = UISwipeGestureRecognizerDirectionRight;
swipeRight.delegate = self;
[_webView addGestureRecognizer:swipeRight];
- (void)swipeRightAction:(id)ignored
{
NSLog("triggered");
}
TIA! S.