报错:Use of undeclared identifier '_executing' / '_finished';
解决方法:

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

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


示例:

@implementation SDWebImageDownloaderOperation
{
    size_t width, height;
    BOOL responseFromCached;
}

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

 

相关文章:

  • 2021-07-26
  • 2022-02-22
  • 2021-11-03
  • 2021-10-28
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-23
  • 2021-11-15
  • 2021-12-10
  • 2021-09-07
  • 2021-10-04
  • 2021-08-01
相关资源
相似解决方案