0

我的代码是

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

    NSString *CellIdentifier1 = [NSString stringWithFormat:@"SimpleCell"];

    UITableViewCell *cell1 = [tableView dequeueReusableCellWithIdentifier:nil];

    if (cell1 == nil) {
        cell1 = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier1] autorelease];

    }
    return cell1;
}

这总是会导致 libsystem_c.dylib mallic 内存泄漏 48 字节。并且每次调用 reloadData 时都会累积内存泄漏。

欢迎评论

4

1 回答 1

0

这是目前 iOS 中存在的与 UIScrollViews 相关的已知错误。目前您所能做的就是等待系统更新并希望它得到修复。

以下是更多信息: http: //openradar.appspot.com/11081198

于 2012-06-12T03:58:04.817 回答