xcdatamodal 扩展中的 transfarmable 有什么用
大家好,我刚刚开始为我的应用程序进行数据库工作。我的想法是将一些矩形(分别为 x,y,宽度,高度)保存为 int32 并将 nsstring 保存为字符串,直到我的工作完成。现在我的问题是,什么是与“transfarmable”类型一起使用,我们可以使用它。预先感谢您的回答。
hi all just now i started database work for my app.my idea is to save some rectangles(x,y,width,hight individually)as int32 and nsstring as string upto that my work completed .Now my question here is, what is the use with the "transfarmable" type where we can use this. Thanks in advance for your answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定 transfarmable,但
Transformable
是:取自 http://developer.apple .com/library/mac/#documentation/Cocoa/Conceptual/CoreData/Articles/cdNSAttributes.html。
本质上,如果您希望将自定义构造序列化到数据库中,然后重新构造为所需的对象/对象图,则 Transformable 类型可让您访问 Core Data 的框架,以在数据库中存储复杂的格式/对象,让您编写执行序列化和反序列化的逻辑。
I'm not sure about transfarmable, but
Transformable
is:as taken from http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CoreData/Articles/cdNSAttributes.html.
Essentially, if you want a custom construct to be serialized into the database and then reconstituted as your desired object/object graph, the
Transformable
type lets you access Core Data's framework for storing complex formats/objects in the database, letting you code the logic that does the serialization and deserialization.