在这段代码中,如果collection
在调用 的类中释放init...
,会发生self.title
什么self.managedObjectContext
?难道我们不需要调用.itemName
而currentCollection
不是调用collection
自身吗?
- (id)initWithCollection:(AACollection *)collection {
if( (self = [super initWithNibName:@"AACollectionViewController"
bundle:nil]) ) {
currentCollection = [collection retain];
self.title = collection.itemName;
self.managedObjectContext = collection.managedObjectContext;
}
谢谢