其他视图中的 ManagedObjectContext

发布于 2024-10-04 20:04:55 字数 139 浏览 4 评论 0原文

我终于设法让核心数据发挥作用并开始理解它。到目前为止,我刚刚在启用了核心数据的基于窗口的应用程序中玩游戏,在应用程序委托文件中玩。

但是,如何从应用程序委托外部访问我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木槿暧夏七纪年 2024-10-11 20:04:55

尝试使用

[[[UIApplication sharedApplication] delegate] managedObjectContext];

要摆脱警告,请将委托强制转换为您实际的 AppDelegate;例如,

NSManagedObjectContext *context = [(YourAppDelegate *)[[UIApplication sharedApplication] delegate] managedObjectContext];

编辑:

更改任何数据后,您需要保存它。这是我使用的方法:

NSManagedObjectContext *moc = [self managedObjectContext];

NSError *error;
if (![moc save:&error]) {
    NSLog(@"Couldn't save current data in current method.");
}

根据需要更改日志语句。

Try using

[[[UIApplication sharedApplication] delegate] managedObjectContext];

To get rid of warnings, cast the delegate as your actual AppDelegate; for example,

NSManagedObjectContext *context = [(YourAppDelegate *)[[UIApplication sharedApplication] delegate] managedObjectContext];

EDIT:

After you change up any data, you'll need to save it. Here's the method I use:

NSManagedObjectContext *moc = [self managedObjectContext];

NSError *error;
if (![moc save:&error]) {
    NSLog(@"Couldn't save current data in current method.");
}

Change up the log statement as you see fit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文