From e132300a0f569b0120aa6d858152901fa13d29ad Mon Sep 17 00:00:00 2001 From: Jimmie Jensen Date: Mon, 13 Feb 2017 16:21:47 +0100 Subject: [PATCH] #1801: Makes sure UIActivityIndicator view is always initialized on the main thread --- SDWebImage/UIImageView+WebCache.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SDWebImage/UIImageView+WebCache.m b/SDWebImage/UIImageView+WebCache.m index 889305b2..06f29f53 100644 --- a/SDWebImage/UIImageView+WebCache.m +++ b/SDWebImage/UIImageView+WebCache.m @@ -173,10 +173,10 @@ static char TAG_ACTIVITY_SHOW; - (void)addActivityIndicator { if (!self.activityIndicator) { - self.activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:[self getIndicatorStyle]]; - self.activityIndicator.translatesAutoresizingMaskIntoConstraints = NO; - dispatch_main_async_safe(^{ + self.activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:[self getIndicatorStyle]]; + self.activityIndicator.translatesAutoresizingMaskIntoConstraints = NO; + [self addSubview:self.activityIndicator]; [self addConstraint:[NSLayoutConstraint constraintWithItem:self.activityIndicator