Authored by eric@skrobs

Update UIImageView+WebCache.m

Can cause animation losing or crash if you are in a thread.
... ... @@ -43,7 +43,9 @@ static char imageURLKey;
objc_setAssociatedObject(self, &imageURLKey, url, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
if (!(options & SDWebImageDelayPlaceholder)) {
self.image = placeholder;
dispatch_main_async_safe(^{
self.image = placeholder;
});
}
if (url) {
... ...