SDWebImage在xcode6.1的iOS8环境下报错

    在使用使用旧版本的SDWebImage的时候遇到xcode报错,

               错误提示为:Use of undeclared identifier '_executing' / '_finished';

  解决方法有两种:解决方法1:在SDWebImageDownloaderOperation类的实现中添加:

                   @synthesize executing = _executing ; 

                   @synthesize finished = _finished;


    解决方法二:直接更新SDWebImage

         这里记下,防止自己忘记~

你可能感兴趣的:(SDWebImage在xcode6.1的iOS8环境下报错)