其他视图中的 ManagedObjectContext
我终于设法让核心数据发挥作用并开始理解它。到目前为止,我刚刚在启用了核心数据的基于窗口的应用程序中玩游戏,在应用程序委托文件中玩。
但是,如何从应用程序委托外部访问我的 ManagedObjectContext,例如,如果我有 UIView 子类?
I have finally managed to get core data working and beginning to understand it. So far I have just been playing in a window based app with core data enabled, playing inside the app delegate files.
But how can I access my managedObjectContext from outside the app delegate, for example if I had a UIView subclass?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
要摆脱警告,请将委托强制转换为您实际的 AppDelegate;例如,
编辑:
更改任何数据后,您需要保存它。这是我使用的方法:
根据需要更改日志语句。
Try using
To get rid of warnings, cast the delegate as your actual AppDelegate; for example,
EDIT:
After you change up any data, you'll need to save it. Here's the method I use:
Change up the log statement as you see fit.