Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I think you can't. But maybe there's a solution for your original problem. Why do you ant to use your own swipe gesture recognizer on a web view? – Kai Jun 11 '12 at 14:21
could you detect when the dragging is began ? – Malek_Jundi Jun 11 '12 at 14:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.