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

时间:2014-09-20 19:42:18   收藏:0   阅读:206

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


解决方法:

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

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


即可。


原创内容,转载请注明出处:http://blog.xoneday.com

原文:http://blog.csdn.net/cuibo1123/article/details/39434015

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