我创建了 UIImage (UIImageExtra) 的子类,因为我想包含额外的属性和方法。
我有一个包含此自定义类实例的数组。但是,当我保存数组时,UIImageExtra 类中的额外数据似乎没有保存。
UIImageExtra 符合 NSCoding,但不会调用 initWithCoder 或 encodeWithCoder,因为我添加的 NSLog 语句不会打印。
我保存数组的方法如下:
- (void)saveIllustrations {
if (_illustrations == nil) {
NSLog(@"Nil array");
return;
}
[self createDataPath];
//Serialize the data and write to disk
NSString *illustrationsArrayPath = [_docPath stringByAppendingPathComponent:kIllustrationsFile];
NSMutableData *data = [[NSMutableData alloc] init];
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
[archiver encodeObject:_illustrations forKey:kIllustrationDataKey];
[archiver finishEncoding];
[data writeToFile:illustrationsArrayPath atomically: YES];
}
并且 UIImageExtra 有以下保存的委托(delegate)方法:
#pragma mark - NSCoding
- (void)encodeWithCoderNSCoder *)aCoder {
NSLog(@"Encoding origin data!");
[super encodeWithCoder:aCoder];
[aCoder encodeObjectriginData forKey:kOriginData];
}
- (id)initWithCoderNSCoder *)aDecoder {
if (self = [super initWithCoderNSCoder *) aDecoder]) {
NSLog(@"Decoding origin data");
self.originData = [aDecoder decodeObjectForKey:kOriginData];
}
return self;
}
我首先创建数组的代码如下所示(以防提供任何线索)
for (NSDictionary *illustrationDict in illustrationDicts) {
NSString *illustrationString = [illustrationDict objectForKey"Filename"];
NSNumber *xCoord = [illustrationDict objectForKey"xCoord"];
NSNumber *yCoord = [illustrationDict objectForKey"yCoord"];
UIImageExtra *illustration = (UIImageExtra *)[UIImage imageNamed:illustrationString];
//Scale the illustration to size it for different devices
UIImageExtra *scaledIllustration = [illustration adjustForResolution];
NSValue *originData = [NSValue valueWithCGPoint:CGPointMake([xCoord intValue], [yCoord intValue])];
[scaledIllustration setOriginDatariginData];
[self.illustrations addObject:scaledIllustration];
}
或者我只是以错误的方式保存这些数据?非常感谢。
您初始化数组的代码实际上并未创建 UIImageExtra 子类的实例。
UIImageExtra *illustration = (UIImageExtra *)[UIImage imageNamed:illustrationString];
返回一个 UIImage。转换它并没有达到您的预期。
UIImageExtra *scaledIllustration = [illustration adjustForResolution];
还是只是一个 UIImage。
解决此问题的一种直接但冗长的方法是使 UIImageExtra 成为围绕 UIImage 的 包装器。包装器将有一个从 UIImage 初始化的类方法:
+ (UIImageExtra)imageExtraWithUIImageUIImage *)image;
然后,您要调用的每个 UIImage 方法都必须转发到包装的 UIImage 实例——还要小心重新包装例如结果。 -adjustForResolution
以免你再次得到一个未包装的 UIImage 实例。
Objective-C 更复杂的方法是在 UIImage 的 Category 中添加您想要的功能,然后使用 method swizzling 将 NSCoding 方法替换为您的类实现。棘手的部分(除了所需的 Objective-C 运行时体操)是存储“额外”数据的位置,因为您无法在类别中添加实例变量。 [标准答案是有一个由 UIImage 实例的适当表示形式(如包含其指针值的 NSValue)作为键的后备字典,但正如您可以想象的那样,簿记会很快变得复杂。]
退一步说,我对新 Cocoa 程序员的建议是:“想一个更简单的方法。如果你想做的事情这么复杂,那就试试别的吧。”例如,编写一个简单的 ImageValue
类,该类具有 -image
方法和 -extraInfo
方法(并实现 NSCoding 等),并且将其实例存储在您的数组中。
关于objective-c - 保存自定义对象的 NSArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10415111/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |