Hi all,
I was checking my app for memory leaks using instruments and I got the following NSConcreteMutableData GeneralBlock memory leaks.When I checked it was from the following code.
NSError *error = nil;
if (![[self fetchedResultsController] performFetch:&error]) {
NSLog(@"Failed to load data : %@", [error localizedDescription]);
}
error = nil;
My fetchResultCntroller initialization looks exactly like apple examples.Is there something I'm missing. I'm debugging it on Simulator 3.0. I would appreciate any help. Thanks, Sarah