• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

objective-c - 保存自定义对象的 NSArray

[复制链接]
菜鸟教程小白 发表于 2022-12-12 20:41:32 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我创建了 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];
    }

或者我只是以错误的方式保存这些数据?非常感谢。



Best Answer-推荐答案


您初始化数组的代码实际上并未创建 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap