Update
Solved the issue and there was an cycle retain.
Original Question
Profile showed zero memory leak, however the app used more and more memory as time went.
Let's just take one of the things in the app, and have a detailed look. There is a table view - let's call it the main table, when click on any of its cell, it leads you to a second table view and the second one has 10 to 20 images on it.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
FlyerListTable *detail = [[FlyerListTable alloc] initWithNibName:@"FlyerListTable" bundle:nil];
detail.department = [categories objectAtIndex: indexPath.row];
detail.promotions = [items valueForKey:detail.department];
[self.navigationController pushViewController:detail animated:NO];
[detail release];
}
FlyerListTable is the class for the second table, and it has dealloc defined, however I traced it and this dealloc method was never called.