dequeueReusableCellWithIdentifier然后不使用单元格?

时间:2013-03-22 20:22:11

标签: ios uitableview memory-leaks uikit

如果我打电话:

-[UITableView dequeueReusableCellWithIdentifier]

然后我选择来重复使用此方法中的单元格

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

是否必须引入泄密?我的猜测是,一旦自动释放池消失,它就会dealloced

4 个答案:

答案 0 :(得分:3)

是的,这引入了泄漏。通过继承UITableViewCell

来凭经验尝试
static int instances = 0;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        NSLog(@"Init! instances=%d", instances++);
    }
    return self;
}

-(void)dealloc {
    NSLog(@"Dealloc! instances=%d", --instances);
}

如果您不使用从dequeueReusableCellWithIdentifier返回的单元格,则会发生泄漏。

这个问题有两种解决方案:

  1. 按预期使用dequeueReusableCellWithIdentifier的结果或
  2. 使用nil作为reuseIdentifier;然后不会引入泄漏。这是最好的解决方案,除非你的表有很多行,并且你不想处理重用的混乱。

答案 1 :(得分:2)

是的,dequeueReusableCellWithIdentifier返回一个自动释放的对象,不会导致内存泄漏。

但如果您选择不重复使用单元格(无论出于何种原因),则无需先调用dequeueReusableCellWithIdentifier

更新:您可以使用以下代码检查内部重用队列中存储的单元数:

NSDictionary *reuseDict = [self.tableView valueForKey:@"reusableTableCells"];
NSArray *reuseArray = [reuseDict objectForKey:CellIdentifier];
NSLog(@"%d", [reuseArray count]);

我使用Master-Detail Xcode应用程序测试了这个,我删除了对dequeueReusableCellWithIdentifier的调用。重用队列中的单元格数量在横向方向上增加到最多17个,在纵向方向上增加到23个。这正是可见细胞的数量加上一个。所以这个数字确实有限,即使你从不重复使用细胞。

答案 2 :(得分:1)

如果你没有在dequeueReusableCellWithIdentifier中返回由- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;返回的UITableViewCell,那么根据你在做什么,它可能会造成泄漏。释放表视图时,dequeueReusableCellWithIdentifier返回的单元格会自动释放,因为表视图保存对此方法返回的每个单元格的引用。

如果您在dequeueReusableCellWithIdentifier中反复拨打- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath,则会遇到问题:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CustomCell"];
    // calculate height
    // ...
}

在上面的代码dequeueReusableCellWithIdentifier中,每次调用此方法时都会返回新的单元格,因此滚动表格视图时内存使用率会上升。但是,在稍后的某个时间点,dequeueReusableCellWithIdentifier分配的这些单元格将在表格视图重新发布时自动释放。

答案 3 :(得分:0)

不,这不会导致泄漏,但也不一定是内存效率。如果您希望自动处理所有这些单元重用工作,请考虑使用优秀的Sensible TableView(免费)等框架。