从现有 XSD 创建托管对象模型 - iPhone 核心数据
我有几个带有已定义数据模型的现有 XML 架构文件。我现在想将精确的数据模型合并到 iPhone 应用程序中,并使用 Core Data 进行持久化。有谁知道除了使用 Xcode 中的图形工具之外是否还有其他方法可以创建托管对象模型?我需要花很长时间才能在 Xcode 中检查并重新创建我的对象模型。如果我能以某种方式导入我已经拥有的东西,那就太好了。
I have several existing XML schema files with a defined data model. I would now like to incorporate the exact data model in an iPhone app, using Core Data for persistence. Does anyone know if there is a way to create a Managed Object Model other than by using the graphical tool in Xcode? It would take me a long long time to have to go through and re-create my object model in Xcode. It would be nice if I could just somehow import what I already have.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Xcode的图形工具是此时创建模型的唯一方法。您可以编写代码在内存中动态创建模型,但它无法持久化(数据可以,但模型不能)。
您还可以从数据对象创建模型,但这需要与使用图形工具一样长的时间(甚至更长)。
Xcode's graphical tool is the only way to create a model at this time. You can write code to dynamically create a model in memory but it can't be persisted (the data can but the model cannot).
You can also create the model from your data objects but that takes as long if not longer than using the graphical tool.