OSX-Parse - 如何在后台获取图像

时间:2013-10-08 20:57:18

标签: macos thread-safety parse-platform

我有这个代码将Parse图像放入我的 OSX 应用程序。

// give our representation to the image browser
- (id)imageRepresentation {
     NSLog(@"%s", __FUNCTION__);
    return [_file getData];
}

这样可行,但结果是:

Warning: A long-running Parse operation is being executed on the main thread. 
 Break on warnParseOperationOnMainThread() to debug.

我需要将[_file getData]方法移动到后台线程,并可以使用一些帮助。

1 个答案:

答案 0 :(得分:0)

您收到的错误消息 -

Warning: A long-running Parse operation is being executed on the main thread. Break on warnParseOperationOnMainThread() to debug.

运行异步查询时只是一个警告。可以找到更多信息here

如果您想在后台运行查询,请使用findObjectsInBackgroundWithBlock:类的PFQuery方法。