cellForRowAtIndexPath中对象的潜在泄漏

时间:2013-05-29 15:30:09

标签: ios objective-c automatic-ref-counting xcode4.5

我收到以下代码的违规行为:

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

    UITableViewCell *cell = [tableView   dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:simpleTableIdentifier];
    }



        cell.textLabel.text = [mapContacts objectAtIndex:indexPath.row];
    NSLog(@"%@",cell.textLabel.text);
    cell.detailTextLabel.text = [number objectAtIndex:indexPath.row];



        return cell;


}

违规行为显示在return cell;可以采取哪些措施来解决此问题?请帮忙。我正在使用带有ARC的XCode 4.5。

1 个答案:

答案 0 :(得分:6)

你显然没有使用ARC(至少在那个编译单元/文件中)。

此:

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:simpleTableIdentifier];

导致手动引用计数(=非ARC)中的(潜在)泄漏。您需要在此行的末尾添加自动释放:

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:simpleTableIdentifier] autorelease];

或者只是确保ARC已正确启用(在您的网站中查找-fno-objc-arc标志) 建立阶段)