Synthesize `executing` and `finished` properties.

It wouldn't build on Xcode 6 otherwise.
This commit is contained in:
Martin Blech 2014-06-03 11:37:22 -03:00
parent a83f440269
commit 241dafdd57
1 changed files with 3 additions and 0 deletions

View File

@ -39,6 +39,9 @@
BOOL responseFromCached;
}
@synthesize executing = _executing;
@synthesize finished = _finished;
- (id)initWithRequest:(NSURLRequest *)request options:(SDWebImageDownloaderOptions)options progress:(void (^)(NSInteger, NSInteger))progressBlock completed:(void (^)(UIImage *, NSData *, NSError *, BOOL))completedBlock cancelled:(void (^)())cancelBlock {
if ((self = [super init])) {
_request = request;