NSManagedObject 子类,具有模型中未定义的附加属性
是否可以为 NSManagedObject 子类定义核心数据模型中未定义的附加属性?我有一系列附加属性,我不想将其包含在模型中。
我能够将 NSManagedObject 保存到上下文中,但是当我关闭应用程序然后再次启动应用程序后运行提取时,NSManagedObject 包含所有空值...
有什么想法吗?
Is it possible to define additional properties to a NSManagedObject subclass that are not defined within the Core Data Model? I have a series of additional properties that I do not want to include in the model.
I am able to save the NSManagedObject to the context just fine, but when I close the app then run a fetch after starting the app again, the NSManagedObject contains all null values...
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想保存这些值,则必须将它们放入模型中,否则您可以在每次访问该值时创建它们,但之前没有创建它们。
延迟加载风格。
If you want to save those values you have to put them into your model, otherwise you are fine to create them each time the value is accessed and wasn't created earlier.
Lazy loading style.