PFQuery pinAllInBackground:block:永不完成

我有一个parsing应用程序,我想启用本地数据存储caching/脱机使用。 在我的应用程序委托,我已经设置[Parse enableLocalDatastore];

在我的查询(到服务器),我正在进行一个正常的查询,但我在抓取结果:

 [followingsQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) { [PFObject pinAllInBackground:objects block:^(BOOL succeeded, NSError *error) { NSLog(@"er: %@", error); }]; ... //rest of my handler }]; 

但是,完成块( NSLog(@"er: %@", error); )永远不会被调用。 甚至没有错误。 我到处都有断点。 pinAllInBackground:block:被调用,但它的完成处理程序永远不会被调用(我的应用程序已连续运行2分钟,仅locking100个对象,所以它应该是瞬时的)。 我也试过pinAllInBackground:withName:block:但没有区别。 我试过pinAll:它永远不会返回,阻塞调用线程(它不会消耗任何CPU)。 我怎么解决这个问题?

这是我在Parse中的另一个inBackground方法中运行嵌套的inBackground方法时遇到的已知错误。 目前的解决方法是使用不同的调度方法,如Grand Central Dispatch。

尝试这个:

 [followingsQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) { dispatch_async(dispatch_get_main_queue(), ^{ NSError *error = nil; id result = [PFObject pinAll:objects error:&error]; if (error) { NSLog("error: %@", error); } }); }]; 

你看过他们的文档如何查询本地数据存储:

供你参考 :

https://parse.com/docs/ios_guide#localdatastore-find/iOS