I've been working on an application for a while now, but I couldn't ask this question due to the NDA.

I have a UIPageViewController load with my Viewcontroller. The view controllers have buttons which are overridden by the PageViewControllers gesture recognizers. For example I have a button on the right side of the viewcontroller and when you press the button, the PageViewController takes over and changes the page.

How can I make the button receive the touch and cancel the gesture recognizer in the PageViewController?

I think the PageViewController makes my ViewController a subview of its view.

I know I could turn off all of the Gestures, but this isn't the effect I'm looking for.

I would prefer not to subclass the PageViewController as apple says this class is not meant to be subclassed.

link|improve this question

I also have been working on app that uses PageViewController ... and I'm looking for a way to change pages programmaticly ... can you help me a bit on this one ? – Toncean Cosmin Nov 11 '11 at 9:04
sure. To change a page programmatically you want to do this : NSArray *viewControllers = [NSArray arrayWithObject:pageIWantToTurnTo]; then [pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:YES completion:NULL]; – Rich86man Nov 22 '11 at 17:26
feedback

4 Answers

up vote 11 down vote accepted

You can override -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch to better control when the PageViewController should receive the touch and not. Look at "Preventing Gesture Recognizers from Analyzing Touches" in Dev API Gesture Recognizers

My solution looks like this in the RootViewController for the UIPageViewController:

In viewDidLoad:

//EDITED Need to take care of all gestureRecogizers. Got a bug when only setting the delegate for Tap
for (UIGestureRecognizer *gR in self.view.gestureRecognizers) {
    gR.delegate = self;
}

The override:

-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
    //Touch gestures below top bar should not make the page turn.
    //EDITED Check for only Tap here instead.
    if ([gestureRecognizer isKindOfClass:[UITapGestureRecognizer class]]) {
        CGPoint touchPoint = [touch locationInView:self.view];
        if (touchPoint.y > 40) {
            return NO;
        }
        else if (touchPoint.x > 50 && touchPoint.x < 430) {//Let the buttons in the middle of the top bar receive the touch
            return NO;
        }
    }
    return YES;
}

And don't forget to set the RootViewController as UIGestureRecognizerDelegate.

(FYI, I'm only in Landscape mode.)

link|improve this answer
Thank you, this solved my problem. In my case I wanted the tapping gesture to be in my full control, regardless of the touch position, so the code was even simpler: it just checks whether the gestureRecognizer is kind of class UITapGestureRecognizer. – Giorgio Barchiesi Dec 20 '11 at 9:19
feedback

I had the same problem. The sample and documentation does this in loadView or viewDidLoad: self.view.gestureRecognizers = self.pageViewController.gestureRecognizers;

This replaces the gesture recognizers from the View Controllers view to with them of the UIPageViewController. Now when a touch occurs, they are first sent through the page view controllers gesture recognizers - if they do not match, they are sent to the subviews.

Just uncomment that line, and everything is working as expected.

Phillip

link|improve this answer
feedback

If you're using a button that you've subclassed, you could override touchesBegan, touchesMoved, and touchesEnded, invoking your own programmatic page turn as appropriate but not calling super and passing the touches up the notification chain.

link|improve this answer
Over a page view controller, you place any control..... it won't receive touch. – Satyam svv Oct 27 '11 at 13:20
Sataym, are you suggesting that it's impossible to place buttons or interactive elements in a UIPageViewController? And Apple just forgot to mention that in all the UIPageViewController documentation? – isaac Oct 27 '11 at 14:06
No Look at Philips answer. Until and unless we comment that line of code, none of the controls will receive touch events unless it is first view. After commenting that line of code, it can be any custom button or label or UIButton or something else will receive touch events. – Satyam svv Oct 27 '11 at 14:25
I've ran in this too. I do have a button in the bottom middle of the page. That seems to work. but putting it on the left or right won't. – SpaceTrucker Nov 2 '11 at 15:51
feedback

Here is another solution, which can be added in the viewDidLoad template right after the self.view.gestureRecognizers = self.pageViewController.gestureRecognizers part from the Xcode template. It avoids messing with the guts of the gesture recognizers or dealing with its delegates. It just removes the tap gesture recognizer from the views, leaving only the swipe recognizer.

self.view.gestureRecognizers = self.pageViewController.gestureRecognizers;

// Find the tap gesture recognizer so we can remove it!
UIGestureRecognizer* tapRecognizer = nil;    
for (UIGestureRecognizer* recognizer in self.pageViewController.gestureRecognizers) {
    if ( [recognizer isKindOfClass:[UITapGestureRecognizer class]] ) {
        tapRecognizer = recognizer;
        break;
    }
}

if ( tapRecognizer ) {
    [self.view removeGestureRecognizer:tapRecognizer];
    [self.pageViewController.view removeGestureRecognizer:tapRecognizer];
}

Now to switch between pages, you have to swipe. Taps now only work on your controls on top of the page view (which is what I was after).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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