I’ve custom tableview cell and whenever I scroll, it’s leaking memory as shown in instruments image below. It’s the same effect with customtableviewcell scrolling.
I’ve downloaded several apple sample projects and its same result. memory leaks whenever I scroll any tableview list(even for 2 or 3 cells) or customtableviewcell!
I’m using ARC, but it seems its leaking memory and I’m not sure what’s wrong with my code.
I’m using reuseidentifier custom tableview cell
static NSString *NotesCellIdentifier = @"NotesCell";
notesCell = (EditingTableTextViewCell *)[tableView dequeueReusableCellWithIdentifier:NotesCellIdentifier];
if (notesCell == nil)
{
[[NSBundle mainBundle] loadNibNamed:@"EditingTableTextViewCell" owner:self options:nil];
notesCell = editingTableTextViewCell;
self.editingTableTextViewCell = nil;
}
#import "EditingTableTextViewCell.h"
@implementation EditingTableTextViewCell
@synthesize label, textViewField;
- (void)dealloc {
// [label release];
// [textField release];
// [super dealloc];
}
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
if(editing){
[self.textViewField setEditable:YES];
}else{
[self.textViewField setEditable:NO];
}
}
@end
is this due to my custom cell holding onto old properties? I can’t dealloc in ARC so how do i clear old property values?
My instruments screen shot is:

can anyone help me to identify the memory leak?
Thanks in advance.
Rama
Apple came back today and accepted it as a bug: ID# 11106828 & ID# 10710601. I’ll post update here when I get a response.