NSCodingを使用して、データ永続性のメソッドとしてカスタムクラスをアーカイブ/アーカイブ解除しています。オブジェクトがNSObjectのサブクラスである場合は正常に機能しますが、カスタムオブジェクトのサブクラスであるオブジェクトもあります。initWithCoder:メソッドとencodeWithCoderを変更する必要がありますか?現在、サブクラスに固有のプロパティは正常にエンコード/デコードされますが、サブクラスがスーパークラスから継承するプロパティはそうではありません。何かご意見は?基本的な構造は次のとおりです。
@interface NewsItem : NSObject <NSCoding, NSCopying> {
//properties for the super class here
}
@implementation NewsItem
- (void)encodeWithCoder:(NSCoder *)coder {
[coder encodeObject:itemName forKey:kItemNameKey];
//etc etc
}
- (id)initWithCoder:(NSCoder *)coder {
if ( (self = [super init]) )
{
self.itemName = [coder decodeObjectForKey:kItemNameKey];
//etc etc
}
return self;
}
-(id)copyWithZone:(NSZone *)zone {
NewsItem *copy = [[[self class] allocWithZone: zone] init];
copy.itemName = [[self.itemName copy] autorelease];
//etc etc
return copy;
}
およびサブクラス:
@interface File : NewsItem {
NSString *fileSizeString;
//etc etc
}
@implementation File
- (void)encodeWithCoder:(NSCoder *)coder {
[super encodeWithCoder:coder]; //added this, but didn't seem to make a difference
[coder encodeObject:fileSizeString forKey:kFileSizeStringKey];
//etc etc
}
- (id)initWithCoder:(NSCoder *)coder {
if ( (self = [super init]) )
{
self.fileSizeString = [coder decodeObjectForKey:kFileSizeStringKey];
//etc etc
}
return self;
}
-(id)copyWithZone:(NSZone *)zone {
File *copy = (File *)[super copyWithZone:zone];
copy.fileSizeString = [[self.fileSizeString copy] autorelease];
//etc etc
return copy;
}