報錯:
Use of undeclared identifier '_executing';
Use of undeclared identifier '_finished';
解決方法:
在SDWebImageDownloaderOperation類的實現中@implementation SDWebImageDownloaderOperation{...}下面添加:
@synthesize executing = _executing;
@synthesize finished = _finished;