The test case is easily reproduced: download Apple's PhotoScroller sample app, and try to adapt it so that panning (both around a zoomed image, and between each image) only works with two fingers.

Setting the panGestureRecognizer for both the pagingScrollView and the imageScrollView to only accept a min & max of 2 touches seems like a good place to start, however it doesn't work. It lets you scroll around an image with two fingers just fine*, however paging then doesn't work.

I've tried so many combinations of settings and custom gesture recognizers, and I'm a bit stumped. Is a custom scroll view subclass going to be of any use, or can I somehow manipulate the scroll view delegate methods to make it work?

*EDIT: Actually, it doesn't scroll fine in this situation. The view no longer glides smoothly as with a single touch...

UPDATE: I'm still struggling with this one. I would appreciate some input from somebody who has played around with UIGestureRecognizers and UIScrollViews.

EDIT:

Setting the ImageScrolliew class to only accept two touches:

- (id)initWithFrame:(CGRect)frame
{
    // ...
    // Template code
    // ...

    [self.panGestureRecognizer setMinimumNumberOfTouches:2];
    [self.panGestureRecognizer setMaximumNumberOfTouches:2];
}

Setting PhotoViewController's pagingScrollView to only accept two touches:

- (void)loadView
{
    // ...
    // Template code
    // ...

    [pagingScrollView.panGestureRecognizer setMinimumNumberOfTouches:2];
    [pagingScrollView.panGestureRecognizer setMaximumNumberOfTouches:2];
}

These modifications are made directly on top of the PhotoScroller sample app. I would expect these simple changes to work for two-finger interaction, however the side-effects are odd (as explained above).

link|improve this question

77% accept rate
Downloading. 108mb o_O – 0xSina Nov 6 '11 at 3:49
@PragmaOnce: Yeah, sorry to link such a large sample. It contains all the full size and tiled images for the paging scroll view. Pretty pictures aren't necessary to demonstrate my point, but hey...! – StuDev Nov 6 '11 at 3:52
Could you care to post your code so that we may help you. – SeriousSam Nov 15 '11 at 6:18
The full code for implementing the paging scroll view with nested scrolling image views is too lengthy to post, which is why I suggested using the PhotoScroller app as a starting point. I have posted the additions to this sample that I would expect to enable the behaviour I am looking for. – StuDev Nov 15 '11 at 6:58
1  
UIScrollView has its own private gesture recognizers. Even the exposed panGestureRecognizer is a private class. NSLog(@"%@", [pagingScrollView valueForKeyPath:@"gestureRecognizers.class"]); -> ( UIScrollViewDelayedTouchesBeganGestureRecognizer, UIScrollViewPanGestureRecognizer, UIScrollViewPagingSwipeGestureRecognizer ). I think you'll need to pick a different UI. – rob mayoff Nov 15 '11 at 7:34
show 1 more comment
feedback

1 Answer

Subclassing seems to be the way to go with this

The documentation states that you can manipulate how scrolling gestures are handled through subclassing.

UIScrollView Class Reference

Specifically

Subclasses can override the touchesShouldBegin:withEvent:inContentView:, pagingEnabled, and touchesShouldCancelInContentView: methods (which are called by the scroll view) to affect how the scroll view handles scrolling gestures.

You should also take a look at this SO post, Scrolling with two fingers with a UIScrollView

link|improve this answer
Thanks for the response, I appreciate it. However - being critical for a minute - this is a very generic answer to a more specific question. The ImageScrollView is already subclassed, and I have experimented with subclassing the paging scroll view as well, to no avail. I have seen the linked SO post before, and while it has been useful to me in the past, the answers are actually all outdated (even the ones that iterate through the scroll view's gesture recognisers - the same can be more easily achieved in iOS 5 using the code in my question). – StuDev Nov 16 '11 at 3:01
I hope you can appreciate that I would like to issue the bounty to an answer that provides a little more detailed insight into how one might customise a subclass to achieve the required behaviour. For example, since touchesShouldBegin... & touchesShouldCancel... are only called once at the start of each touch sequence, how do I handle the case where the ImageScrollView should pan (while zoomed in), and then the paging scroll view should take over when scrolling reaches the edge of the image? – StuDev Nov 16 '11 at 3:15
I can fully appreciate that, I hope that you can get a more helpful answer. I will see if I can look into it some. I have used gesture recognizers with scrollviews but not this scenario. – Chris Wagner Nov 16 '11 at 3:22
Thanks, I'd appreciate the help if you find any further information. – StuDev Nov 16 '11 at 3:37
feedback

Your Answer

 
or
required, but never shown

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