1

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

我从此 链接下载了 ASWebImage 文件

添加到 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'
4

3 回答 3

2

为了解决这个问题,请参考项目安装说明。我遇到了同样的错误,但是按照安装说明进行操作后,问题立即得到了解决。

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

于 2012-09-19T17:57:59.437 回答
2

确保您已导入“ImageIO.framework”

于 2012-09-02T07:27:39.857 回答
0

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

于 2012-08-23T14:12:39.727 回答