AFNetworking图片缓存问题 缓存
AFNetworking缓存cacheUIImageView+AFNetwor AFNetworking网络库已经提供了很好的图片缓存机制,效率是比较高的,可是我发现没有直接提供清除缓存的功能,可项目一般都须要添加 清除功能的功能,所以,在这里我以UIImageView+AFNetworking类中添加了下面一个清除功能方法:网络
/** app
Clear image cache spa
author: huangyibiao .net
*/ blog
+ (void)clearCache; 图片
/** ip
Clear image cache rem
author: huangyibiao get
*/
+ (void)clearCache {
AFImageCache *cache = (AFImageCache *)[UIImageView sharedImageCache];
[cache removeAllObjects];
return;
}