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;
}