2

我已经在我的 iPad 应用程序中实现了 UIPageViewController。但是,当 iPad 处于纵向时,您可以看到所有页面,但是当 iPad 处于横向时,您看不到最后一页,如果您在纵向的最后一页并更改为横向,则应用程序会崩溃以下错误:

由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“提供的视图控制器数量 (1) 与 >请求的脊椎位置 (UIPageViewControllerSpineLocationMid) 所需的数量 (2) 不匹配”</p>

因为它需要 2 页,而只有一页。

当“书”的页数为奇数(例如 7 页)时,我该怎么办以避免前面的异常?

4

2 回答 2

4

我修复它的方式是这样的。

- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerAfterViewController:(UIViewController *)viewController {
    DSBookletPageViewController *currentVC = (DSBookletPageViewController *)viewController;
    NSUInteger currentIndex = [currentVC index];

    if(currentIndex >= self.modelArray.count-1) {
        if (currentIndex %2 == 0 && !isPortrait) {
            //return an empty one
            DSBookletPageViewController *newVC = [[DSBookletPageViewController alloc] init];

            [newVC setIndex:currentIndex+1];

            return newVC;
        } else {
            return nil;
        }
    }

    currentIndex ++;

    UIImage *currentPage = [self.modelArray objectAtIndex:currentIndex];
    DSBookletPageViewController *newVC = [[DSBookletPageViewController alloc] initWithImage:currentPage andOrientation:isPortrait];
    [newVC setIndex:currentIndex];

    return newVC;
}

我基本上检查我是否在数组的末尾,或者超出它,因为我在我的模型数组之外向 UIPageViewController 添加了另一个页面。如果我在那里,并且当前索引是偶数并且我们不是纵向的,那么我添加页面,如果不是,那么我返回 nil。

我希望这会有所帮助。

于 2012-05-28T18:30:19.297 回答
0

看看我的回答here。基本上,在您的情况下,您必须设置UIPageViewControllerDataSource为第一次出现视图时未显示的所有页面提供内容。

于 2012-05-29T10:03:04.957 回答