I am using custom cells to populate one of my table. but whenever I scroll up and down, I can see there are some leaks happening, which points to UIKit Lib. Not sure why? For the reference I have attached a screen shot of the leaks from the Leaks Instrument.
Any help is appreciated!!
TableView cellForRowIndex:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *cellIdentifier = [NSString stringWithFormat:@"EditingCell_%d_%d",indexPath.section,indexPath.row];
EditingTableViewCell *cell = (EditingTableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (!cell) {
[self.appCellNib instantiateWithOwner:self options:nil];
cell = editingTableViewCell;
self.editingTableViewCell = nil;
}
Custom Cell:
@implementation EditingTableViewCell
@synthesize label,textField,commentField,dateLabel;
#pragma mark -
#pragma mark == Initialization ==
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code.
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
}
#pragma mark -
#pragma mark == Memory Management ==
- (void)dealloc {
[label release];
[textField release];
[commentField release];
[dateLabel release];
[super dealloc];
}
tableView:cellForRowAtIndexPath:method – user756245 Jul 20 '11 at 10:28