当调用 setImageWithURL 时,它会失败并显示以下内容,
[UIImageView setImageWithURL:placeholderImage:]:无法识别的选择器发送到实例 0x149a20 2011-12-14 18:11:38.060 [781:707] 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:'-[UIImageView setImageWithURL:placeholderImage:] : 无法识别的选择器发送到实例 0x149a20'
我可以确认我已SDWebImage
正确包含项目和所需的标头,因为我可以成功使用 SDWebImageManager。
以下是我调用 UIImageView 类别方法的代码setImageWithURL
NSURL* url = [NSURL URLWithString:@"www.abc.com/abc.png"];
[cell.imageView setImageWithURL:url placeholderImage:[UIImage imageNamed:@"abc.png"]];