このコードで、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;
}
ありがとう