Synthesize `executing` and `finished` properties.
It wouldn't build on Xcode 6 otherwise.
Showing
1 changed file
with
3 additions
and
0 deletions
@@ -39,6 +39,9 @@ | @@ -39,6 +39,9 @@ | ||
39 | BOOL responseFromCached; | 39 | BOOL responseFromCached; |
40 | } | 40 | } |
41 | 41 | ||
42 | +@synthesize executing = _executing; | ||
43 | +@synthesize finished = _finished; | ||
44 | + | ||
42 | - (id)initWithRequest:(NSURLRequest *)request options:(SDWebImageDownloaderOptions)options progress:(void (^)(NSInteger, NSInteger))progressBlock completed:(void (^)(UIImage *, NSData *, NSError *, BOOL))completedBlock cancelled:(void (^)())cancelBlock { | 45 | - (id)initWithRequest:(NSURLRequest *)request options:(SDWebImageDownloaderOptions)options progress:(void (^)(NSInteger, NSInteger))progressBlock completed:(void (^)(UIImage *, NSData *, NSError *, BOOL))completedBlock cancelled:(void (^)())cancelBlock { |
43 | if ((self = [super init])) { | 46 | if ((self = [super init])) { |
44 | _request = request; | 47 | _request = request; |
-
Please register or login to post a comment