当应用程序进入后台模式时,我的应用程序正在下载 JSON 对象。该应用程序将它们转换为核心数据实体。我遇到的问题是我需要将这些核心数据实体的托管对象上下文与主要托管对象上下文合并。
合并这些更改的方法是通过通知:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(contextHasChanged:) name:NSManagedObjectContextDidSaveNotification object:nil];
- (void)contextHasChanged:(NSNotification*)notification
{
NSLog(@"received notification with object: %@",[[notification object] description]);
if ([notification object] == [AppUser managedObjectContext]) return;
if (![NSThread isMainThread]) {
[self performSelectorOnMainThread:@selector(contextHasChanged:) withObject:notification waitUntilDone:YES];
return;
}
[[AppUser managedObjectContext] mergeChangesFromContextDidSaveNotification:notification];
}
由于某种原因,我的代码在后台运行时没有收到这些通知。应用程序在后台模式下运行时是否会继续生成通知?还是我注册此类通知的位置/时间是错误的?
谢谢你的澄清!