Does your custom archiving supported keyed coding? Does it detect it in the archiver?
i.e. I have code like:
if ([decoder allowsKeyedCoding]) {
NSKeyedUnarchiver* coder = (NSKeyedUnarchiver*)decoder;
if ([decoder containsValueForKey:FOLSheet__width] && [decoder containsValueForKey:FOLSheet__height]) {
CGFloat width = [coder decodeDoubleForKey:FOLSheet__width];
CGFloat height = [coder decodeDoubleForKey:FOLSheet__height];
[self setSize:NSMakeSize(width, height)];
}
} else {
NSLog(@"FOLSheet only supports keyed decoding!");
}
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden