何时调用encodeWithCoder?

发布于 2024-09-23 23:55:47 字数 187 浏览 2 评论 0原文

这将保存一个数组(我认为)。

- (void)encodeWithCoder:(NSCoder *)encoder {
    [encoder encodeObject:myArray forKey:@"myArray"];
}

当我想保存数组时是否必须直接调用此方法还是必须执行其他操作?

This will save an array (I think).

- (void)encodeWithCoder:(NSCoder *)encoder {
    [encoder encodeObject:myArray forKey:@"myArray"];
}

Do I have to directly call this method when I want to save an array or do I have to do something else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离不开的别离 2024-09-30 23:55:47

您不直接调用此方法。如果需要序列化该对象,则由 NSCoder 子类调用。如果要对对象图进行编码,请使用 NSKeyedArchiver 的类方法 archivedDataWithRootObject:archiveRootObject:toFile:。这反过来将调用对象的 encodeWithCoder: 方法。另请注意,数组中的每个对象都必须实现 NSCoding 协议。

You don’t call this method directly. It’s called by a NSCoder subclass if it needs to serialize that object. If you want to encode an object graph use the class methods archivedDataWithRootObject: or archiveRootObject:toFile: of NSKeyedArchiver. This in turn will call the encodeWithCoder: method of your objects. Also note that every object in your array has to implement the NSCoding protocol.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文