NSManagedObjectModel - create model dynamically

Deadly 提交于 2019-12-21 20:21:10

问题


Can anyone point me to a tutorial on building the core data model dynamically in Xcode? All tutorials I found are based on a static design but the apple documentation says it is possible to build the model programatically..sadly no example on that in apple documentation set.


回答1:


You have to init a NSManagedObjectModel, then for each entity in your model you create an NSEntityDescription, then create an NSAttributeDescription per attribute. You can see a basic example from this post.

http://iphonedevsdk.com/forum/iphone-sdk-development/45944-want-to-create-a-parent-entity-programmatically-in-manegedobjectmodel.html



来源:https://stackoverflow.com/questions/17288607/nsmanagedobjectmodel-create-model-dynamically

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!