SDWebImage无法在iOS 8上运行

时间:2014-06-27 17:58:48

标签: ios ios8 sdwebimage

我正在开发使用iOS7 SDK的应用程序,当我转移到iOS8时SDWebImage停止正常工作。如果我试试这个:

[imgViewTemp setImageWithURL:urlPhoto completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType)
         {
             NSlog(@"done");
         }];

完成块根本没有被调用。有人有同样的问题吗?

1 个答案:

答案 0 :(得分:6)

按照@ 3d1d的建议,我已经解决了这个问题。我在GitHub上发布了一个问题,他们的一位合作者帮助了我。

对于遇到同样问题的人:

1.如果(像我一样)你现在正在使用Cocoa Pod来开发你的     iOS8项目我强烈建议删除任何引用     来自Podfile的SDWebImage

2.Run pod install

3.使用

下载SDwebImage
git clone https://github.com/rs/SDWebImage.git --recursive

4。通常导入" UIImageView + WebCache.h"项目的类别

这对我有用。

来源:https://github.com/rs/SDWebImage/issues/786

bpoplauschi 寻求帮助。