4

在下面的代码中,我是否正确理解了保留周期问题,是否会有保留周期?

- (NSError *)importRoute:(NSDictionary *)route {
    [self.importContext performBlockAndWait:^{
        [NSEntityDescription insertNewObjectForEntityForName:@"Entity" inManagedObjectContext:self.importContext];
        //do I get a retain cycle here?
    }];
    ...
}

- (NSManagedObjectContext *)importContext {
    if (!_importContext) {
        id appDelegate = [[UIApplication sharedApplication] delegate];
        _importContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
        _importContext.parentContext = [appDelegate managedObjectContext];
    }
    return _importContext;
}
4

1 回答 1

12

有一个保留周期,但它是暂时的。这是保留周期:

  • self保留importContext
  • importContext保留块
  • 该块保留self

一旦块完成执行,importContext就释放它。此时块的保留计数变为零并被释放。当它被释放时,它会释放self.

通常,涉及块的保留周期仅在无限期保留块时才会出现问题,例如因为您将其存储在属性、实​​例变量或容器中。如果您只是将一个块传递给将在不久的将来执行该块一次的函数,那么您通常不必担心保留周期。

于 2013-03-23T05:18:28.940 回答