我创建了NSCell的子类并覆盖了setObjectValue函数以实现我的需要。除了存在泄漏问题外,这些都没问题。 NSCell的setObjectValue函数似乎不会释放它的原始对象。
我给这个类的对象是一个自定义对象,它符合NSCopying协议并实现了copyWithZone函数,如下所示
- (void)setObjectValue:(id < NSCopying >)object {
// I tried to use [[self objectValue] release]; here but the app crashed
[super setObjectValue:object];
//---- other iniatizlize here ---
}
- (id)copyWithZone:(NSZone *)zone {
MapComponent *newCopy = [[MapComponent allocWithZone:zone] initWithType:self.componentType];
newCopy.myImage = self.myImage;
return newCopy;
}
我发现了同样的问题here。没有答案,但可以更好地描述我的情况。
答案 0 :(得分:2)
试试这个:
- (id)copyWithZone:(NSZone *)zone {
MapComponent *newCopy = [[[MapComponent allocWithZone:zone] initWithType:self.componentType] autorelease];
newCopy.myImage = self.myImage;
return newCopy;
}