使用SDWebImage到iphone

时间:2012-08-23 14:07:01

标签: iphone uiimageview sdwebimage

我正在为我的应用程序使用SDWebImage。

我从这里下载了ASWebImage文件 link

添加到myapp中。然后我导入了UIImageView + WebCache.h

当我运行我的应用程序时,我会遇到异常。

这是我的代码

self.view.backgroundColor = [UIColor whiteColor];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)]
[imageView setImageWithURL:[NSURL URLWithString:@"http://mydomain.com/a.jpg"]];
[self.view addSubview:imageView];
[imageView release];

当我运行此应用程序时,我会遇到以下异常。

[UIImageView setImageWithURL:]: unrecognized selector sent to instance 0x6e64390
2012-08-23 19:32:14.828 test123[16941:f803] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIImageView setImageWithURL:]: unrecognized selector sent to instance 0x6e64390'

3 个答案:

答案 0 :(得分:2)

确保您已导入“ImageIO.framework”

答案 1 :(得分:2)

要解决此问题,请参阅项目安装说明。我遇到了同样的错误,但是只要我按照安装说明操作,问题就立即解决了。

您可以在此处找到这些说明:https://github.com/rs/SDWebImage#installation

答案 2 :(得分:0)

您是否已将SDWebImage库与您的应用相关联?链接器标志-ObjC怎么样?