Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8571633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:49:27+00:00 2026-06-11T18:49:27+00:00

In iOS6 in the methods viewControllerAfterViewController and viewControllerBeforeViewController if I return nil (for block

  • 0

In iOS6 in the methods viewControllerAfterViewController and viewControllerBeforeViewController if I return nil (for block the page navigation when I am in the first or last page) the app crash with this exception:

‘The number of view controllers provided (0) doesn’t match the number required (1) for the requested transition’

In iOS5 all works good.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T18:49:28+00:00Added an answer on June 11, 2026 at 6:49 pm

    I had the same issue. I found that the cause was replacing the delegate on the UIPanGestureRecognizer of the UIPageViewController, a no-no really. The pan gesture recognizer was calling an undocumented method _gestureRecognizerShouldBegin: (note the leading underscore) that UIPageViewController implements and apparently relies upon to work properly (read: not-crash). I ended up implementing respondsToSelector: and forwardingTargetForSelector: in my class that uses the UIPageViewController to pass the undocumented delegate method on to the UIPageViewController without specifically naming it (and almost certainly earning me an app store review rejection).

    -(BOOL)respondsToSelector:(SEL)aSelector {
        if ([super respondsToSelector:aSelector])
            return YES;
        else if ([self.pageViewController respondsToSelector:aSelector])
            return YES;
        else
            return NO;
    }
    
    - (id)forwardingTargetForSelector:(SEL)aSelector {
        if ([super respondsToSelector:aSelector]) {
            return nil;
        } else if ([self.pageViewController respondsToSelector:aSelector]) {
            return self.pageViewController;
        }
        return nil;
    }
    

    My longer term solution will be to rework the use of UIPageViewController such that I don’t need to displace the gesture recognizer delegates.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: presentViewController: crash on iOS 6 (AutoLayout) I'm getting this error when clicking
iOS 6 for Developers says this: In-App Hosted Content Host In-App Purchase content on
I noticed this while using iOS6 beta 3 When I create a new subclass
I set up XCode 4.5 and iOS6 simulator a few minutes ago. My app
Does anyone know if the answer to this question has changed in iOS6? Detect
I'm using some methods in some apps that are now marked as deprecated since
I updated to Xcode 4.5 and am working with iOS6--a mistake I will definitely
How long after iOS 6 comes out that developers HAVE to submit using iOS6?
Xcode 4.4, Mountain Lion, llvm 4.0 compiler. I build my app, it works on
I have an older app that does not use ARC. When trying to address

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.