sdwebimage ios8 报错

报错:Use of undeclared identifier '_executing' / '_finished';



解决方法:

在SDWebImageDownloaderOperation类的实现中(@implementation里)添加:

[objc] view plaincopy
@synthesize executing = _executing ; 
@synthesize finished = _finished; 


即可。

猜你喜欢

转载自peng13123.iteye.com/blog/2151061