下午好,
我试图在我的项目中使用SDWebImage,但我总是得到一个不同的错误,我对此有点绝望,我希望你可以帮助我。
我尝试按照教程从gitHUB导入框架,但是我收到了显示错误的setImageWithURL错误: 没有可见的@interface用于' UIImage'声明选择器' setImageWithURL:placeholderImage:'
当错误消失时(像魔术一样)我有一个链接器问题因为我必须更改为Linker Flags -ObjC并且它显示错误链接器。
我尝试使用CocoaPods,但他们正在谈论一些命令行,而我却迷失了。
我还能尝试什么?
编辑:
NSURL * imageURL = [NSURL URLWithString:[[_jsonArray objectAtIndex:indexPath.row] valueForKey:@"imagen"]];
NSData * imageData = [NSData dataWithContentsOfURL:imageURL];
UIImage * carPhoto = [UIImage imageWithData:imageData];
cell.carImage.image = carPhoto;
[cell.carImage setImageWithURL:[NSURL URLWithString:[[_jsonArray objectAtIndex:indexPath.row] valueForKey:@"imagen"]] placeholderImage:[UIImage imageNamed:@"Hisoka.jpg"]];
没有可见的@interface用于' UIImage'声明选择器' setImageWithURL:placeholderImage:'
问候。
答案 0 :(得分:0)
关于#1,您需要使用UIImageView
NOT UIImage
。