在我的Row类中,我具有initWithCoder方法,并且在该方法中还原的所有内容都可以正常运行,但只能在该方法内运行。调用该方法后,我松开了Row类中的声音数组。 sounds类也具有initWithCoder方法,并且声音只能在Row类的initWithCoder方法中播放。解码Row对象后,声音数组完全消失,无法调用。

这是我的initWithCoder来源:

- (id) initWithCoder:(NSCoder *)coder {
    ...
    soundArray = [coder decodeObjectForKey:@"soundArray"];
    NSLog(@"%d",[soundArray count]);
    return self;
}


日志显示计数为应有的8(这是在取消归档时)。然后分配我创建的行对象。并且结果行对象不再具有soundArray。

[NSKeyedArchiver archiveRootObject:row toFile:@"DefaultRow"];
...
row = [NSKeyedUnarchiver unarchiveObjectWithFile:@"DefaultRow"];


因此,现在每当我调用soundArray时,它就会崩溃。

//ERROR IS HERE
NSLog(@"%d",[[row soundArray] count]);


请帮助(soundArray是一个NSMutableArray)。

最佳答案

您需要将soundArray保留在initWithCoder:中–您可以在Apple's site上阅读Cocoa内存管理。

如果您不使用retain soundArray,则稍后将对其进行dealloc编辑,因为您尚未声明其所有权。基本上,decodeObjectForKey:返回一个已经是autoreleased的对象。

关于objective-c - 我的声音去哪儿了?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3042089/

10-10 21:01