我正在使用此 AsyncImageLoader 异步加载图像:AsyncImageView。
当我尝试使用 loadImageWithURL 方法加载图像资源时,我不断收到错误消息:unrecognized selector sent to instance
.
类 (AsyncImageLoader) 正在尝试像这样执行选择器:
[target performSelectorOnMainThread:success withObject:image waitUntilDone:NO];
我的代码是这样的:
-(void)thumbImageLoadSucces:(id)sender {
NSLog(@"imageloadedsucces");
}
-(void)thumbImageLoadError:(id)sender {
NSLog(@"imageloadederror");
}
然后在同一个控制器的其他地方:
[self.asyncImageLoader loadImageWithURL:url target:self.thumb success:@selector(thumbImageLoadSucces:) failure:@selector(thumbImageLoadError:)];
谁能告诉我为什么我不断收到这个错误?我已经在 SO 上尝试了针对此错误的其他解决方案,但没有任何帮助(这主要是代码中的错字,但我检查了我的代码是否有错误)。