我有一個進程,我定期在從遠程服務器接收更改並在本地創建,更新或刪除核心數據表中的記錄的後臺線程上運行。創建和更新工作很好。刪除似乎沒有被處理。我確定我錯過了一些愚蠢的東西。有些代碼:在後臺線程上執行時CoreData未處理刪除
我使用的隊列正是如此定義:
self.concurrentQueue=dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
一個NSTimer是設置是定期調用以下選擇:
-(void)poll {
void(^blkSyncDeletedItems)(void)=^{
if ([PFUser currentUser]) {
AN3AppDelegate* theDelegate=[[UIApplication sharedApplication]delegate];
NSManagedObjectContext* blkmoc=[[NSManagedObjectContext alloc]init];
[blkmoc setPersistentStoreCoordinator:[theDelegate persistentStoreCoordinator]];
NSNotificationCenter* notify=[NSNotificationCenter defaultCenter];
[notify addObserver:theDelegate selector:@selector(mergeChanges:) name:NSManagedObjectContextDidSaveNotification object:blkmoc];
NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"Deleted" inManagedObjectContext:blkmoc];
NSFetchRequest *request = [[[NSFetchRequest alloc] init] autorelease];
[request setEntity:entityDescription];
NSError* error=nil;
NSArray *array = [blkmoc executeFetchRequest:request error:&error];
... look up some data on the remote server, not manipulating objects in array...
for (int i=0; i<[array count]; i++) {
Deleted* aDelete=[array objectAtIndex:i];
[blkmoc deleteObject:aDelete];
}
[blkmoc release];
[[NSNotificationCenter defaultCenter]removeObserver:theDelegate];
};
dispatch_sync(concurrentQueue, blkSyncDeletedItems);
}
最後,mergeChanges樣子這個:
-(void)mergeChanges:(NSNotification *)notification {
NSLog(@"AppDelegate: merging changes.");
[[self managedObjectContext]performSelectorOnMainThread:@selector(mergeChangesFromContextDidSaveNotification:) withObject:notification waitUntilDone:YES];
}
正如我所說的,我有其他塊被調度到併發使用非常相似的代碼進行更新和創建的隊列(在塊的開始和結束處設置相同),並且它們工作正常。當「處理」刪除時,mergeChanges方法永遠不會被調用。
所有事情都是用dispatch_sync調用的,所以所有的事情都是在下一個塊被調用之前完成的。
我在做什麼錯?
感謝
你什麼時候保存你正在刪除對象的MOC?沒有保存,沒有'NSManagedObjectContextDidSaveNotification'。 – paulbailey 2012-01-13 17:32:24