我的代码是
- (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 时都会累积内存泄漏。
欢迎评论