I have written a UIScrollView subclass that I am using to scroll a series of UITableViews. See the following diagram:

enter image description here

As you can see I have several vertically scrolling UITableViews, that are being scrolled horizontally inside a parent UIScrollView. This all works fine. However the application has a number of global gestures. For example, if I swipe in a given direction with 2 fingers, I do a UIView transition to another part of the app. but if I do the gesture on top of the scroll view and/or its child table views, they naturally scroll their content. This doesn't look good and causes some layout issues.

What I would like to figure out is how to disable all scrolling, on both the UIScrollView and its child UITableViews, when a user touches anywhere with two fingers, and only with two fingers. I've tried variations of overriding touchesBegan, touchesEnded, touchesShouldCancel etc... but I can't get it quite right. Any help is much appreciated.

Here is my gesture handling code:

UISwipeGestureRecognizer *twoFingerSwipeUp = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleTwoFingerSwipe:)];
[twoFingerSwipeUp setNumberOfTouchesRequired:2];
[twoFingerSwipeUp setDirection:UISwipeGestureRecognizerDirectionUp];
[twoFingerSwipeUp setDelegate:self];

// 'self' is the superview of the UIScrollView, which is a UIView.
[self addGestureRecognizer:twoFingerSwipeUp];

[twoFingerSwipeUp release];

// ... repeat the above code for up, down, left, right gestures ...

- (void)handleTwoFingerSwipe:(UISwipeGestureRecognizer*)swipeGesture {

    switch ([swipeGesture direction]) {

        case UISwipeGestureRecognizerDirectionUp:            
            [self changeToView:viewAbove];
            break;

        case UISwipeGestureRecognizerDirectionDown:
            [self changeToView:viewBelow];            
            break;

        case UISwipeGestureRecognizerDirectionRight:
            [self changeToView:viewToTheRight];
            break;

        case UISwipeGestureRecognizerDirectionLeft:
            [self changeToView:viewToTheLeft];
            break;            
    }
}
link|improve this question

56% accept rate
feedback

4 Answers

Try setting panGestureRecognizer.maximumNumberOfTouches = 1 on all scroll and table views (iOS 5 only).

link|improve this answer
This does not work if 1 finger is on 1 tableview and your other finger is on another tableview. – nick Nov 28 '11 at 17:19
Actually this doesn't seem to work at all... I can still scroll the parent scrollView side-to-side with 2 fingers. – nick Nov 28 '11 at 18:07
feedback

If you're using a swipe recogniser for the two-finger swipe, require the recognisers of the scroll view (including the table views — they're scroll view as well) to fail when the two-finger recogniser recognises its gesture.

[[scrollView panGestureRecognizer] requireGestureRecognizerToFail: twoFingerRecogniser];

Iterate the above code for every scroll view and table view.

(P.S.: "recogniser" is British English, not a spelling err.)

Hope that helps. :-)

link|improve this answer
This doesn't seem to work, scrollView and tableViews all still scroll. Also, as I said in the question, I have multiple 2-finger swipe gestures and it seems like method only allows me to set one. The panGestureRecognizer accessor is also iOS 5 only. – nick Nov 28 '11 at 17:39
feedback

Write this code: scrollView.minimumZoomScale=1.0;scrollView.maximumZoomScale=1.0; scrollView.delegate self];

And Here is scrollViewDelegate Method:-

-(UIView*)viewForZoomingInScrollView:(UIScrollView *)aScrollView{ return aScrollView;}

link|improve this answer
feedback

One thing that you should be doing is to check that the gesture has finished before acting upon it:

if (swipeGesture.state == UIGestureRecognizerStateEnded) {
   // Do your think
}

I've known odd things to happen otherwise.

link|improve this answer
Good to know, however doesn't seem to make any difference in this case. – nick Nov 29 '11 at 17:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.