UIPageViewController, how do I correctly jump to a specific page without messing up the order specified by the data source? UIPageViewController, how do I correctly jump to a specific page without messing up the order specified by the data source? ios ios

UIPageViewController, how do I correctly jump to a specific page without messing up the order specified by the data source?


Programming iOS6, by Matt Neuburg documents this exact problem, and I actually found that his solution feels a little better than the currently accepted answer. That solution, which works great, has a negative side effect of animating to the image before/after, and then jarringly replacing that page with the desired page. I felt like that was a weird user experience, and Matt's solution takes care of that.

__weak UIPageViewController* pvcw = pvc;[pvc setViewControllers:@[page]              direction:UIPageViewControllerNavigationDirectionForward               animated:YES completion:^(BOOL finished) {                   UIPageViewController* pvcs = pvcw;                   if (!pvcs) return;                   dispatch_async(dispatch_get_main_queue(), ^{                       [pvcs setViewControllers:@[page]                                  direction:UIPageViewControllerNavigationDirectionForward                                   animated:NO completion:nil];                   });               }];


So I ran into the same problem as you where I needed to be able to 'jump' to a page and then found the 'order messed up' when I gestured back a page. As far as I have been able to tell, the page view controller is definitely caching the view controllers and when you 'jump' to a page you have to specify the direction: forward or reverse. It then assumes that the new view controller is a 'neighbor' to the previous view controller and hence automagically presents the previous view controller when you gesture back. I found that this only happens when you are using the UIPageViewControllerTransitionStyleScroll and not UIPageViewControllerTransitionStylePageCurl. The page curl style apparently does not do the same caching since if you 'jump' to a page and then gesture back it delivers the pageViewController:viewController(Before/After)ViewController: message to the data source enabling you to provide the correct neighbor view controller.

Solution: When performing a 'jump' to page you can first jump to the neighbor page to the page (animated:NO) you are jumping to and then in the completion block of that jump, jump to the desired page. This will update the cache such that when you gesture back, the correct neighbor page will be displayed. The downside is that you will need to create two view controllers; the one you are jumping to and the one that should be displayed after gesturing back.

Here is the code to a category that I wrote for UIPageViewController:

@implementation UIPageViewController (Additions) - (void)setViewControllers:(NSArray *)viewControllers direction:(UIPageViewControllerNavigationDirection)direction invalidateCache:(BOOL)invalidateCache animated:(BOOL)animated completion:(void (^)(BOOL finished))completion {    NSArray *vcs = viewControllers;    __weak UIPageViewController *mySelf = self;    if (invalidateCache && self.transitionStyle == UIPageViewControllerTransitionStyleScroll) {        UIViewController *neighborViewController = (direction == UIPageViewControllerNavigationDirectionForward                                                    ? [self.dataSource pageViewController:self viewControllerBeforeViewController:viewControllers[0]]                                                    : [self.dataSource pageViewController:self viewControllerAfterViewController:viewControllers[0]]);        [self setViewControllers:@[neighborViewController] direction:direction animated:NO completion:^(BOOL finished) {            [mySelf setViewControllers:vcs direction:direction animated:animated completion:completion];        }];    }    else {        [mySelf setViewControllers:vcs direction:direction animated:animated completion:completion];    }}@end

What you can do to test this is create a new 'Page-Based Application' and add a 'goto' button that will 'jump' to a certain calendar month and then gesture back. Be sure to set the transition style to scroll.


I use this function (I'm always in landscape, 2 page mode)

-(void) flipToPage:(NSString * )index {int x = [index intValue];LeafletPageContentViewController *theCurrentViewController = [self.pageViewController.viewControllers   objectAtIndex:0];NSUInteger retreivedIndex = [self indexOfViewController:theCurrentViewController];LeafletPageContentViewController *firstViewController = [self viewControllerAtIndex:x];LeafletPageContentViewController *secondViewController = [self viewControllerAtIndex:x+1 ];NSArray *viewControllers = nil;viewControllers = [NSArray arrayWithObjects:firstViewController, secondViewController, nil];if (retreivedIndex < x){    [self.pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:YES completion:NULL];} else {    if (retreivedIndex > x ){        [self.pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionReverse animated:YES completion:NULL];      }     }}