我正在用仪器检查我的记忆泄漏情况,我收到以下NSConcreteMutableData GeneralBlock记忆泄露。 当我检查时,它来自以下法典。
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