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

/ 0评 / 0

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

解决方法:
在SDWebImageDownloaderOperation类的实现中(@implementation SDWebImageDownloaderOperation{...}下面)添加:


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

即可。

发表评论

邮箱地址不会被公开。 必填项已用*标注