CoreData 模型可以导出以在其他应用程序中使用吗?
有没有办法将 CoreData 模型文件(即实体描述:*.xcdatamodeld)导出到另一个项目。因为重新创建所有实体很无聊:-)
Is there any way to export a CoreData model file (i.e entities description: *.xcdatamodeld) to another project. Because re-recreate all entities is boring :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,只需将模型文件本身添加/复制到新项目中,就像任何其他类型的文件一样。 。如果应用程序使用相同的初始数据,您甚至可以添加/复制现有商店。我一直这样做
Yes, just add/copy the model file itself to the new project just like you would any other type of file. . You can even add/copy an existing store if the apps use the same initial data. I do this all the time