我有这个代码将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]
方法移动到后台线程,并可以使用一些帮助。
答案 0 :(得分:0)
您收到的错误消息 -
Warning: A long-running Parse operation is being executed on the main thread.
Break on warnParseOperationOnMainThread() to debug.
运行异步查询时只是一个警告。可以找到更多信息here。
如果您想在后台运行查询,请使用findObjectsInBackgroundWithBlock:
类的PFQuery
方法。