PageviewController 总是返回一个像 2147483648 这样的索引

Posted

技术标签:

【中文标题】PageviewController 总是返回一个像 2147483648 这样的索引【英文标题】:PageviewController always gives back an index like 2147483648 【发布时间】:2013-03-13 14:14:36 【问题描述】:

我正在尝试实现UIPageViewController。我创建了 4 个单独的 viewController 并将其添加到我的故事板中。现在我想用UIPageViewController 滚动浏览它。这就是我在代码中所做的。

我做了一个modelArray,把所有的VC都放进去:

   self.modelArray = [[NSMutableArray alloc] init];
   NSMutableArray *pageData = [[NSMutableArray alloc]init];
    ViewOneViewController *viewOne = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewOne"];
    ViewTwoViewController *viewTwo = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewTwo"];
    ViewThreeViewController *viewThree = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewThree"];
    ViewFourViewController *viewFour = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewFour"];

    [pageData addObject:viewOne];
    [pageData addObject:viewTwo];
    [pageData addObject:viewThree];
    [pageData addObject:viewFour];

    self.modelArray = pageData;

接下来设置UIPageViewController 的基础知识并设置初始VC:

 ViewOneViewController *cVC = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewOne"];
    NSArray *viewControllers = [NSArray arrayWithObject:cVC];
    [self.pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];

    // Add the pageViewController as the childViewController
    [self addChildViewController:self.pageViewController];

    // Add the view of pageViewController  to the currentView
    [self.view addSubview:self.pageViewController.view];

    // Call didMoveToParentViewController: of the childViewController, the UIPageViewController instance in our case.
    [self.pageViewController didMoveToParentViewController:self];

    // Assign the gestureRecognizers property of the pageViewController to the view's gestureRecognizers property
    self.view.gestureRecognizers = self.pageViewController.gestureRecognizers;

最后这些是我的delegate 方法(例如下一个VC的方法)

- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController
       viewControllerAfterViewController:(UIViewController *)viewController

    NSUInteger currentIndex = [self.modelArray indexOfObject:viewController];
    if(currentIndex == self.modelArray.count - 1)
        return nil;

    UIViewController *cVC = [self.modelArray objectAtIndex:currentIndex + 1];
    return cVC;

但是当我构建和运行时,我得到了以下错误。

Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 2147483648 beyond bounds [0 .. 3]'

有人可以帮我吗?

亲切的问候.. 编辑

 thread #1: tid = 0x2403, 0x37776350 libsystem_kernel.dylib`__pthread_kill + 8, stop reason = signal SIGABRT
    frame #0: 0x37776350 libsystem_kernel.dylib`__pthread_kill + 8
    frame #1: 0x33115122 libsystem_c.dylib`pthread_kill + 58
    frame #2: 0x33151972 libsystem_c.dylib`abort + 94
    frame #3: 0x36f2fd4e libc++abi.dylib`abort_message + 74
    frame #4: 0x36f2cff8 libc++abi.dylib`default_terminate() + 24
    frame #5: 0x3165ba76 libobjc.A.dylib`_objc_terminate() + 146
    frame #6: 0x36f2d07a libc++abi.dylib`safe_handler_caller(void (*)()) + 78
    frame #7: 0x36f2d114 libc++abi.dylib`std::terminate() + 20
    frame #8: 0x36f2e598 libc++abi.dylib`__cxa_rethrow + 88
    frame #9: 0x3165b9d0 libobjc.A.dylib`objc_exception_rethrow + 12
    frame #10: 0x38c82f20 CoreFoundation`CFRunLoopRunSpecific + 456
    frame #11: 0x38c82d48 CoreFoundation`CFRunLoopRunInMode + 104
    frame #12: 0x34bbc2ea GraphicsServices`GSEventRunModal + 74
    frame #13: 0x35c14300 UIKit`UIApplicationMain + 1120
    frame #14: 0x0005050c Franke2`main(argc=1, argv=0x2fdb1d20) + 116 at main.m:16
    frame #15: 0x340ccb20 libdyld.dylib`start + 4

【问题讨论】:

请提供堆栈跟踪。 @***foe 你对stackTrace是什么意思?我添加了错误号? 当您遇到崩溃并且应用程序在 Xcode 中停止时,请在调试器控制台中输入 bt 并发布 [edit your question with] 生成的内容。 @***foe 我已经编辑了我的帖子 :) 【参考方案1】:

2147483648 是 NSNotFound,如果找不到对象,-[NSArray indexOfObject:] 会返回。

所以在你的行中

    NSUInteger currentIndex = [self.modelArray indexOfObject:viewController];

viewController 不在modelArray 中。这是因为您每次都在创建视图控制器的新实例。

附带说明,您正在执行self.modelArray = [[NSMutableArray alloc] init];,然后对该数组什么都不做,并在您self.modelArray = pageData; 时将其丢弃。当你只使用一个时,不需要在那里创建两个空数组。

【讨论】:

【参考方案2】:
 ViewOneViewController *cVC = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewOne"];
 NSArray *viewControllers = [NSArray arrayWithObject:cVC];
 [self.pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];

在这里,您正在创建 ViewOneViewController 的新对象并添加到 pageViewController 的 viewControllers 数组中。这个 cVC 对象与您之前在 modelArray 中添加的对象无关。它们都是同一类的不同对象,即 ViewOneViewController。

因此,您必须将相同的对象从 modelArray 传递到 pageViewController 的 viewControllers 数组,这样您就不会得到垃圾值

NSUInteger currentIndex = [self.modelArray indexOfObject:viewController]; //will return garbage value in your case

来自instantiateViewControllerWithIdentifier:的讨论

此方法创建指定视图控制器的新实例 每次调用它。

【讨论】:

所以我需要说 NSArray *viewControllers = [[NSArray alloc]initwithArray:modelArray]; ? [self.pageViewController setViewControllers:self.modelArray 方向:UIPageViewControllerNavigationDirectionForward 动画:NO 完成:nil]; 然后我收到此错误:“提供的视图控制器数量 (4) 与请求的转换所需的数量 (1) 不匹配” 这可能对你有帮助***.com/questions/12565400/…【参考方案3】:

调用indexOfObject:方法后,你应该验证返回的索引不是NSNotFound,或者返回的值是对象不在数组中。

您的代码应该看起来更像这样;

NSUInteger currentIndex = [self.modelArray indexOfObject:viewController];
if(currentIndex == NSNotFound ||
   currentIndex == self.modelArray.count - 1)
    return nil;

以后您应该可以使用Xcode exception breakpoint 自己找到这些错误。

【讨论】:

此代码无法编译。您缺少右括号和一对花括号。

以上是关于PageviewController 总是返回一个像 2147483648 这样的索引的主要内容,如果未能解决你的问题,请参考以下文章

iOS/Swift/Storyboard:仅使用屏幕的 *part* 添加 PageViewController?

PageViewController 嵌入到其他 PageViewController

pageViewController 的视差效果

PageViewController 在旋转时崩溃

滚动表格时如何禁用 PageViewController?

更新 ViewController 不更新 PageViewController 点