0

我在我的 iPhone-App 中集成了 GrabKit,这是一个从社交网络抓取照片的库。现在我有以下情况/问题:

我有一个 UITableViewController - AlbumListViewController。然后是一个 UITableViewCell - AlbumCellViewController。当您点击其中一个单元格 - 带有照片的相册时,会有一个 UITableViewController - PhotoListViewController 和一个 UITableViewCell - PhotoCellViewController。

这里的一切都正常工作,我可以浏览相册,选择一张,浏览其中的照片,然后当我选择一张单张照片时,我的 SetPhotoViewController 有一个 PushViewController,它以全屏显示选定的图像。

现在,当我想在 SetPhotoViewController 中使用导航栏的后退按钮时,崩溃并显示以下消息:

*** Assertion failure in -[UISectionRowData refreshWithSection:tableView:tableViewRowData:], /SourceCache/UIKit_Sim/UIKit-2372/UITableViewRowData.m:400
2012-10-22 22:49:32.814 Amis[1820:c07] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Failed to allocate data stores for 1073741821 rows in section 1. Consider using fewer rows'
*** First throw call stack:
(0x23de012 0x1b63e7e 0x23dde78 0x15f9f35 0xc8f83b 0xc923c4 0xb56fa2 0xb5692c 0x1690f 0x1cd653f 0x1ce8014 0x1cd87d5 0x2384af5 0x2383f44 0x2383e1b 0x2a9a7e3 0x2a9a668 0xaab65c 0x42fd 0x2b75)
libc++abi.dylib: terminate called throwing an exception

我的两个 UITableViewController 的 DataSource 和 Delegate 都设置为 File's Owner。

我通过代码调试的时候,没有发现什么特别的东西,所有的照片都可以加载,所有的数组都填满了数据,没什么奇怪的。

这是 PhotoListViewController 的两个函数,只要我按下 NavigationController 上的后退按钮,它们就会被调用:

(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell *cell = nil;
    NSLog(@"%i", indexPath.row);
    NSLog(@"%ii", indexPath.section);
    // Extra Cell
    if ( indexPath.section > _lastLoadedPageIndex ){    

        static NSString *extraCellIdentifier = @"ExtraCell";

        cell = [tableView dequeueReusableCellWithIdentifier:extraCellIdentifier];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:extraCellIdentifier];
        }

        cell.textLabel.text = @"load more";
        cell.textLabel.font = [UIFont fontWithName:@"System" size:8];



    } else {

        static NSString *photoCellIdentifier = @"photoCell";

        cell = [tableView dequeueReusableCellWithIdentifier:photoCellIdentifier];
        if (cell == nil) {

            cell = [[[NSBundle mainBundle] loadNibNamed:@"PhotoRowViewController" owner:self options:nil] objectAtIndex:0];
        }


    }    

    // setting of the cell is done in method [tableView:willDisplayCell:forRowAtIndexPath:]

    return cell;
}

和..

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    // extra cell
    if ( [cell.reuseIdentifier isEqualToString:@"ExtraCell"] ){ 

        if ( state == GRKDemoPhotosListStateAllPhotosGrabbed ) {

            cell.textLabel.text = [NSString stringWithFormat:@" %d photos", [[_album photos] count] ];

        }else {
            cell.textLabel.text = [NSString stringWithFormat:@"Loading page %d", _lastLoadedPageIndex+1];
            [self fillAlbumWithMorePhotos];
        }


    } else  // Photo cell
    {
        NSArray * photosAtIndexPath = [self photosForCellAtIndexPath:indexPath];

       [(PhotoRowViewController*)cell setPhotos:photosAtIndexPath];


    }

}

我错过了什么?

编辑: numberOfRowsInSection-Method 的代码:如果我调试它,第一次 res 等于 0,第二次调用该方法, res 等于322121535

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.

    NSUInteger res = 0;

    if ( state == GRKDemoPhotosListStateAllPhotosGrabbed && section == _lastLoadedPageIndex ) {

        NSUInteger photosCount = [_album count];

        // Number of cells with kNumberOfPhotosPerCell photos 
        NSUInteger numberOfCompleteCell = (photosCount - section*kNumberOfRowsPerSection*kNumberOfPhotosPerCell) / kNumberOfPhotosPerCell;

        // The last cell can contain less than kNumberOfPhotosPerCell photos
        NSUInteger thereIsALastCellWithLessThenFourPhotos = (photosCount % kNumberOfPhotosPerCell)?1:0;

        // always add an extra cell
        res =  numberOfCompleteCell + thereIsALastCellWithLessThenFourPhotos  +1 ;


    } else if ( section > _lastLoadedPageIndex) {

        // extra cell
        res = 1;

    } else res = kNumberOfRowsPerSection;


    return res;

}
4

1 回答 1

5

我是 GrabKit 的开发者。感谢您使用它:)

实际上,GrabKit 中的控制器仅用于演示目的,它们并非设计为在项目中“按原样”使用,更具体地说:GRKDemoPhotosList 控制器不是为了在控制器层次结构中推送另一个控制器。

所以你需要做的只是让grabKit demo的控制器适合你的项目:)

我想问题如下:

_ 在 [GRKDemoPhotosList viewWillAppear] 中,调用了方法 fillAlbumWithMorePhotos。

_ 当你从你的控制器弹回 GRKDemoPhotosList 时,这个方法会被再次调用一次,它会产生这个错误。

尝试在 viewWillAppear 方法中添加一个标志,以避免两次调用 fillAlbumWithMorePhotos,我想它会正常工作。

如果您需要更多信息或帮助,请随时通过邮件(pierre.olivier.simonard at gmail.com)或推特(@pierrotsmnrd)与我联系:)

于 2012-10-23T11:06:47.000 回答