编码器编码对象

发布于 2024-09-19 20:22:46 字数 151 浏览 4 评论 0原文

考虑以下代码

[coder encodeObject: properties forKey:@"properties"]; 

作为参数传递给encodeObject 的对象类型是否有任何限制?它可以是自定义类中的对象吗?

Consider the following code

[coder encodeObject: properties forKey:@"properties"]; 

Are there any restrictions on what kind of object is passed as an argument to encodeObject? Can it be an object from a custom class?

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

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

发布评论

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

评论(1

北斗星光 2024-09-26 20:22:46

您可以对任何对象进行编码,只要它实现 NSCoding 协议(许多“默认”类 - 例如 NSStringNSArray>NSDictionaryNSData 等 - 已经实现了此协议,并且您可以毫无问题地对它们进行编码)。如果要对自定义对象的数组或字典进行编码,这些对象也必须实现该协议。

您可以在 档案和序列化编程指南NSCoding 协议参考...

You can encode any object, as long as it implements the NSCoding protocol (many 'default' classes - such as NSString, NSArray, NSDictionary, NSData, etc. - already implement this protocol, and you can encode them without problem). If you want to encode an array or dictionary of custom objects, those objects will have to implement the protocol as well.

You can read more about this in the Archives and Serializations Programming Guide and the NSCoding Protocol Reference...

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