在AFNetworking 1.x
中,我们可以通过以下方式使用setImageWithURL
:
NSURL* imageURL = [api urlForImageWithId:IdPhoto isThumb:NO];
[photoView setImageWithURL: imageURL];
}
其中IdPhoto
是我尝试加载到图片视图中的照片的ID。
此代码在AFNetworking 2.0
中无效。我想我必须以某种方式使用AFImageResponseSerializer
,但无法弄清楚如何编写代码。
由于
答案 0 :(得分:3)
要使此代码生效,您需要导入<UIImageView+AFNetworking.h>