码迷,mamicode.com
首页 > 移动开发 > 详细

iOS之SDWebImage清理缓存

时间:2016-04-15 00:00:38      阅读:592      评论:0      收藏:0      [点我收藏+]

标签:

.找到 SDWebImage找到SDImageCache类

添加如下方法

技术分享
- (float)checkTmpSize
{
    float totalSize = 0;
    NSDirectoryEnumerator *fileEnumerator = [[NSFileManager defaultManager] enumeratorAtPath:_diskCachePath];
    for (NSString *fileName in fileEnumerator)
    {
        NSString *filePath = [_diskCachePath stringByAppendingPathComponent:fileName];
        
        NSDictionary *attrs = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath error:nil];
        
        unsigned long long length = [attrs fileSize];
        
        totalSize += length / 1024.0 / 1024.0;
    }
    //    NSLog(@"tmp size is %.2f",totalSize);
    
    return totalSize;
}
技术分享

iOS之SDWebImage清理缓存

标签:

原文地址:http://www.cnblogs.com/pruple/p/5393373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!