ios - PFQuery pinAllInBackground :block: never completes
<p><p>我有一个 Parse 应用程序,我想启用本地数据存储以供缓存/离线使用。在我的应用委托(delegate)中,我设置了 <code>;</code>.</p>
<p>在我的查询(对服务器)中,我进行了正常查询,但我将结果固定在 fetch 上:</p>
<pre><code>[followingsQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
[PFObject pinAllInBackground:objects block:^(BOOL succeeded, NSError *error) {
NSLog(@"er: %@", error);
}];
... //rest of my handler
}];
</code></pre>
<p>但是,完成 block(<code>NSLog(@"er: %@", error);</code>) 永远不会被调用。甚至没有错误。我到处都有断点。 <code>pinAllInBackground:block:</code> 被调用,但它的完成处理程序从未被调用(我的应用程序已经连续运行了 2 分钟,它只固定了 100 个对象,所以它应该是瞬时的)。我也试过 <code>pinAllInBackground:withName:block:</code> 但没有区别。我试过 <code>pinAll:</code> 并且它永远不会返回,阻塞调用线程(虽然它不消耗任何 CPU)。我该如何解决这个问题?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这是我在 Parse 中的另一个 <code>inBackground</code> 类型方法中运行嵌套的 <code>inBackground</code> 类型方法时遇到的一个已知错误。当前的解决方法是使用不同的调度方法,例如 Grand Central Dispatch。</p>
<p>试试这个:</p>
<pre><code>[followingsQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^{
NSError *error = nil;
id result = ;
if (error) {
NSLog("error: %@", error);
}
});
}];
</code></pre></p>
<p style="font-size: 20px;">关于ios - PFQuery pinAllInBackground :block: never completes,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/27435626/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/27435626/
</a>
</p>
页:
[1]