YYWebImage清除缓存

1
2
3
4
5
6
7
8
9

YYImageCache *cache = [YYWebImageManager sharedManager].cache;

float tmpSize = cache.diskCache.totalCost / 1024 /1024;

NSString *clearCacheName = tmpSize >= 1 ? [NSString stringWithFormat:@"清理缓存(%.2f M)",tmpSize] : [NSString stringWithFormat:@"清理缓存(%.2f K)",tmpSize * 1024];
[cache.memoryCache removeAllObjects];
[cache.diskCache removeAllObjects];
NSLog(@"%l@",[NSString stringWithFormat:@"已%@",clearCacheName]);
文章目录