Create NSImage on background queue.
This commit is contained in:
parent
b4ff1785ab
commit
3282f0ec09
|
@ -16,9 +16,10 @@
|
||||||
|
|
||||||
NSParameterAssert(data != nil);
|
NSParameterAssert(data != nil);
|
||||||
|
|
||||||
|
dispatch_async(dispatch_get_global_queue(QOS_CLASS_DEFAULT, 0), ^{
|
||||||
NSImage *image = [[NSImage alloc] initWithData:data];
|
NSImage *image = [[NSImage alloc] initWithData:data];
|
||||||
|
|
||||||
RSCallBlockWithParameter(imageResultBlock, image);
|
RSCallBlockWithParameter(imageResultBlock, image);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue