Xcode6编译SDWebImage报错解决方法(SDWebImageDownloaderOperation.m错误)

时间:2014-09-21 21:34:12   收藏:0   阅读:283

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

 

解决方法:

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

1 @synthesize executing = _executing;
2 @synthesize finished = _finished;

 

即可。

 

原文:http://www.cnblogs.com/hugowang/p/3984985.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!