我仍然可以将 xcdatamodel 核心数据模型关系与 Restkit 一起使用吗?
据我了解,RestKit 提供了与 Apple 的 Core Data 框架的集成,为您创建和填充 Core Data 关联,从而允许基于自然属性的数据模型遍历。
但是,我不确定是否仍然可以将 xcdatamodel 与 RestKit 一起使用,并且找不到任何有关 RestKit 是否可以使用 xcdatamodel (核心数据建模工具)的参考资料、教程。
我的原型应用程序是一个公司结构应用程序;即:
Company -< Departments -< Employees
Company -< Suppliers
..etc
此外,我还设置了一些简单的获取属性/模板来收集特定数据;但是我不确定如果我开始使用 RestKit 是否仍然可以通过 xcdatamodel 使用这些工具/技术,或者更确切地说,我将不得不手动编码它们。
因此,我的问题是,我是否仍然可以使用 xcdatamodel 对复杂的应用程序/数据进行建模,并完成获取的属性等,然后让 RestKit 与之对话;如果是这样,有人可以帮忙指出有关此内容的教程网站吗?
谢谢。
As I understand it RestKit provides integration with Apple’s Core Data framework, making and populating Core Data associations for you, allowing natural property based traversal of your data model.
However, I am unsure if I can still use xcdatamodel with RestKit, and cannot find any references, tutorials on whether RestKit can use xcdatamodel (Core data modelling tool) or not.
My prototype app is a company structure app; ie:
Company -< Departments -< Employees
Company -< Suppliers
..etc
In addition, I have set up some simple Fetched Properties/Templates to gather specific data; however I am unsure if I start using RestKit whether I can still use these tools/techniques via xcdatamodel, or rather I will have to code them manually.
My question therefore is, can I still model my complex app/data using xcdatamodel, complete with the fetched properties, etc and then make RestKit talk to it; and if so, can someone help point to a tutorial site about this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用 xcdatamodel。查看 RKCatalog 示例应用 - RKCoreDataExample 使用它没有任何问题。
Yes, you can use xcdatamodel. Look at RKCatalog example app - RKCoreDataExample uses it without any problems.
您还可以使用 mogenerator 工具。 “machine”文件中将包含所有 CoreData 机制,“humain”文件中将包含 RestKit 相关内容的配置。
You can also use mogenerator tool. Where in "machine" files will be all the CoreData mechanics, and in "humain" files will be configuration of RestKit-related stuff.