0

我有一个collectionview,但是当我尝试单击图像时它显示此错误?整个应用程序是一个选项卡应用程序,因此所有其他选项卡都在工作。除了最后一个标签图像。我正在从 plist 中获取图像以将其显示到 collectionview 中,这是错误的

        *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI 
    objectAtIndex:]: index 0 beyond bounds for empty array'*** First throw call stack: (0x1e92012 


    0x1969e7e 0x1e47b44 0x58b91 0x56686 0x137cf 0x98f1c7 0x98f232 0x98f4da 0x9a68e5 0x9a69cb 0x9a6c76 


`0x9a6d71 0x9a789b 0x9a7e93 0x9a7a88 0xd03e63 0xcf5b99 0xcf5c14 0xdaf5d9 0xdc1182 0xdc1394 0x197d705

 0x9bb93c 0x9bb9ac 0x197d705 0x9bb93c 0x9bb9ac 0xb751d3 0x1e5aafe 0x1e5aa3d 0x1e387c2 0x1e37f44 

    0x1e37e1b 0x3c0f7e3 0x3c0f668 0x8adffc 0x287d 0x27a5)  libc++abi.dylib: terminate called throwing an exception

这是 didselect 方法和 preparesegue 用于将该数组传递给另一个视图控制器

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

    if ([[segue identifier] isEqualToString:@"bookItem"]) {

    NSDictionary *currentBook = [[_freeBooks objectForKey:@"freebook"] objectAtIndex:[[[self.collectionView indexPathsForSelectedItems] objectAtIndex:0] row]];

    NSLog(@"%@", currentBook);

    GMMDetailpage *detailpage = (GMMDetailpage *)[segue destinationViewController];
    detailpage.bookDetails = currentBook;

    NSLog(@"%@",detailpage.bookDetails);
}

}

当前书籍的价值正在打印并且很好....但是在此之后它执行一些其他系统代码然后它显示异常.check image在此处输入图像描述

4

1 回答 1

0

您正在进行两次数组访问,因此错误来自两个数组之一为空的事实。

这两个数组是

[self.collectionView indexPathsForSelectedItems]

[_freeBooks objectForKey:@"freebook"]

分别检查两个数组并找出哪一个是空的。

于 2013-04-09T01:06:21.743 回答