0

所以我有一个名为 MCProductCell 的子类 UITableViewCell,它是从 NIB 加载的。问题是当表格被释放时,我的自定义单元格的dealloc方法甚至没有被调用一次。

这是一些示例代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdentifier = @"MCProductCellIdentifier";
    MCProductCell *cell = (MCProductCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
   // Boolean value needed to determine if it is a reused cell or not. If it's not reused we have 
   // to start the thread that loads the image. For reused cells, that thread is started at the
   // end of the scrolling
   BOOL recycled = YES;
   if (cell == nil) {
       NSLog(@"cell alloc");
       recycled = NO;
       NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"MCProductCell" owner:self options:nil];
       cell = [nib objectAtIndex:0];
   }
   MCProduct *product = [products objectAtIndex:indexPath.row];
   cell.product = product;
   cell.cartViewController = self;
   cell.productImage = product.cachedThumbnailImage;
   if (product.cachedThumbnailImage == nil) {
       cell.productImage = [ViewControllerUtils getDefaultImage];
       if (!recycled)
           [NSThread detachNewThreadSelector:@selector(loadImage:) toTarget:cell withObject:cell.product.imageThumbnailUrl];
   }

   return cell;

}

由于某种原因,当我第一次展示包含表格的 UIViewController 时,我的自定义单元格的 dealloc 方法称为 ONCE。问题是,在 dealloc 方法中,我想将单元格作为观察者删除,如果不调用,则单元格不会作为观察者删除。tableview 也是一个出口。

4

2 回答 2

0

'cell.cartViewController' 属性是如何定义的?如果它保留了您的控制器对象(自我),那么您可能有一个保留周期!

于 2012-08-20T09:57:27.443 回答
0

我想,这一定是因为单元格的保留计数没有下降到 0。这意味着你还有另一个保留。

我更有经验的同事认为这是因为您使用的是 detachNewThreadSelector,它可能会保留单元格。

他建议您使用某种类型的异步图像来加载图像,例如 https://github.com/nicklockwood/AsyncImageView/

祝你好运。

于 2012-08-20T09:13:22.323 回答