菜鸟教程小白 发表于 2022-12-13 10:45:06

objective-c - CoreData 在后台线程上执行时不处理删除


                                            <p><p>我有一个进程在后台线程上定期运行,它接收来自远程服务器的更改,并在本地创建、更新或删除核心数据表中的记录。创建和更新效果很好。似乎根本没有处理删除。我确定我错过了一些愚蠢的东西。一些代码:</p>

<p>我正在使用的队列是这样定义的:</p>

<pre><code>self.concurrentQueue=dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
</code></pre>

<p>设置了一个定期调用以下选择器的 NSTImer:</p>

<pre><code>-(void)poll {
    void(^blkSyncDeletedItems)(void)=^{
      if () {
      AN3AppDelegate* theDelegate=[delegate];
      NSManagedObjectContext* blkmoc=[init];
      ];

      NSNotificationCenter* notify=;
      ;

      NSEntityDescription *entityDescription = ;

      NSFetchRequest *request = [[ init] autorelease];
      ;

      NSError* error=nil;
      NSArray *array = ;

      ... look up some data on the remote server, not manipulating objects in array...

      for (int i=0; i&lt;; i++) {
            Deleted* aDelete=;
            ;
      }

      ;
      [removeObserver:theDelegate];
    };

    dispatch_sync(concurrentQueue, blkSyncDeletedItems);
}
</code></pre>

<p>最后,mergeChanges 看起来像这样:</p>

<pre><code>-(void)mergeChanges:(NSNotification *)notification {
    NSLog(@&#34;AppDelegate: merging changes.&#34;);
    [performSelectorOnMainThread:@selector(mergeChangesFromContextDidSaveNotification:) withObject:notification waitUntilDone:YES];
}
</code></pre>

<p>正如我所说,我有其他 block 被分派(dispatch)到 concurrentQueue 执行更新和创建,使用非常相似的代码(在 block 的开头和结尾相同的设置)并且它们工作正常。当删除被“处理”时,mergeChanges 方法永远不会被调用。</p>

<p>一切都是用 dispatch_sync 调用的,所以应该是在调用下一个 block 之前完成的。</p>

<p>我做错了什么?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你需要调用<code>-</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - CoreData 在后台线程上执行时不处理删除,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8845688/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8845688/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - CoreData 在后台线程上执行时不处理删除