使用SDWebImage的IOS没有给出setImageWithURL方法错误

时间:2014-12-26 07:07:23

标签: ios uiimageview sdwebimage

您好我正在尝试将SDWebImage库用于我的项目。我复制了所有文件。我已导入#import "UIImageView+WebCache.h"但是当我尝试使用

[cell.mediaImg setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
               placeholderImage:[UIImage imageNamed:@"placeholder.png"]];

它给了我错误

No visible @interface for 'UIImageView' declares the selector 'setImageWithURL:placeholderImage:'

所以我做错了什么。还有什么我必须要用的东西。需要一些帮助。谢谢。

1 个答案:

答案 0 :(得分:4)

他们已弃用

[cell.mediaImg setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
               placeholderImage:[UIImage imageNamed:@"placeholder.png"]];

使用

 [cell.mediaImg sd_setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
               placeholderImage:[UIImage imageNamed:@"placeholder.png"]];

并更新sdwebimage文件