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