アプリに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'