重复:
已经使用 Parse.com 实现了一个 iOS 应用程序
试图从缓存中检索。
从缓存中检索数据时,出现如下错误:
由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“此查询具有未完成的网络连接。你必须等到它完成。
当我浏览问题时,我发现:
一些人认为这可能是由于对同一个查询对象进行两次查询调用而没有等待第一个完成。
如何在这个应用程序中避免这些同时调用
查询 setLimit:limit]; [查询集跳过:跳过];
//RETRIEVING FROM CACHE query.cachePolicy = kPFCachePolicyCacheThenNetwork; [query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) { if (!error) { [allObjects removeAllObjects]; //Added regarding cache ****** // The find succeeded. Add the returned objects to allObjects [allObjects addObjectsFromArray:objects]; if (objects.count == limit) { // There might be more objects in the table. Update the skip value and execute the query again. skip += limit; [query setSkip: skip]; // Go get more results weakPointer(); } else { // We are done so return the objects block(allObjects, nil); } } else { block(nil,error); } }];