2

我在我的应用程序中使用核心数据以及NSFetchedResultsController填充表格。我的数据库有 40k+ 个条目,所以表很长。每个表格单元格都有一个使用SDWebImage从 Web 加载的缩略图图像。如果我慢慢滚动,一切都会很好,如果我在几秒钟内开始快速滚动,我会崩溃。

NSZombies 没有显示任何有用的东西。

我猜它与网络有关SDWebImage并从网络加载。工作方式SDWebImage是在后台加载图像,然后在完成下载后设置下载的图像(罗嗦)。我的想法是单元格正在被释放UITableView,然后SDWebImage尝试在释放的单元格上设置图像。因此,如果我可以确定何时UITableViewCell将被释放,我可以停止SDWebImage下载过程并希望解决问题。

我试图添加

- (void)dealloc {
    NSLog(@"dealloc");
}

赶上单元格何时被释放,但我什么也没得到。

编辑-(void)dealloc在子类 UITableViewCell 中有我的方法。

编辑 这是我创建单元格的位置/方式

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 {
 static NSString* inventoryCellID = @"InventoryCustomCellID";

 InventoryCustomCell* cell = (InventoryCustomCell *)[tableView dequeueReusableCellWithIdentifier:inventoryCellID forIndexPath:indexPath];

 [self configureCell:cell atIndexPath:indexPath];

 return cell;
 }


- (void)configureCell:(InventoryCustomCell *)cell atIndexPath:(NSIndexPath *)indexPath {

    [cell formatCellWithProduct:[fetchedResultsController objectAtIndexPath:indexPath] enableAdding:NO];

    cell.openThumbnailButton.tag = indexPath.row;

    [cell.openThumbnailButton addTarget:self action:@selector(presentThumbnailViewWithCell:) forControlEvents:UIControlEventTouchUpInside];
}

在我的自定义单元格中,这是被调用的配置方法:

- (void)formatCellWithProduct:(Product*)product enableAdding:(bool)addingEnabled {

    self.titleLabel.text = product.part_number;
    self.partNumberLabel.text = [[[product.manufacturer allObjects] objectAtIndex:0] name];

    //The SDWebImage UIImageView category method
    [self.thumbImageView setImageWithURL:[NSURL URLWithString:product.photo] placeholderImage:[UIImage imageNamed:@"icon.png"]];
}

编辑 这是下载图像并设置它的 SDWebImage 方法。

- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options progress:(SDWebImageDownloaderProgressBlock)progressBlock completed:(SDWebImageCompletedBlock)completedBlock;
{
    [self cancelCurrentImageLoad];

    self.image = placeholder;

    if (url)
    {
        __weak UIImageView *wself = self;
        id<SDWebImageOperation> operation = [SDWebImageManager.sharedManager downloadWithURL:url options:options progress:progressBlock completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished)
        {
            __strong UIImageView *sself = wself;
            if (!sself) return;
            if (image)
            {
                sself.image = image;
                [sself setNeedsLayout];
            }
            if (completedBlock && finished)
            {
                completedBlock(image, error, cacheType);
            }
        }];
        objc_setAssociatedObject(self, &operationKey, operation, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
    }
}
4

2 回答 2

16

表格视图不倾向于分配和取消分配表格视图单元格。创建单元格的成本很高,因此它们会在可能的情况下被重复使用,而不是在它们离开屏幕时被丢弃。

UITableViewDelegate方法-tableView:didEndDisplayingCell:forRowAtIndexPath:是更新单元格以取消下载或其他不再相关的操作的更好地方。

不过,看起来每个调用-setImageWithURL:etc:etc:都试图取消该图像视图的先前下载。

于 2013-04-09T03:00:23.193 回答
0

你没有解释你把dealloc方法放在哪里..

我认为您可以尝试向您的视图控制器添加一个类别以进行调试,以测试您的单元格的释放是否被调用(不是 tu subclass UITableviewCell)。

例如:

@implementation UITableViewCell(Dealloc)

 - (void)dealloc {
   NSLog(@"dealloc");
   [super dealloc];
 }

@end

你用ARC吗?如果没有,你忘了

InventoryCustomCell* cell = (InventoryCustomCell *)[[tableView dequeueReusableCellWithIdentifier:inventoryCellID forIndexPath:indexPath] autorelease];
于 2013-04-08T20:29:25.463 回答