0

我有这段代码可以让 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]方法移动到后台线程,并且可以使用一些帮助。

4

1 回答 1

0

您收到的错误消息 -

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

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

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

于 2013-10-09T10:38:01.747 回答