首页 > 其他 > 详细

清除缓存的方法(计算)

时间:2015-09-13 19:58:39      阅读:259      评论:0      收藏:0      [点我收藏+]

1.计算

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

新版的SDImageCache类,已增加此方法

[[SDImageCache sharedImageCache] getSize];

2.设置里清除缓存

#pragma 清理缓存图片

- (void)clearTmpPics
{
    [[SDImageCache sharedImageCache] clearDisk];

//    [[SDImageCache sharedImageCache] clearMemory];//可有可无

    DLog(@"clear disk");    

    float tmpSize = [[SDImageCache sharedImageCache] checkTmpSize];

    NSString *clearCacheName = tmpSize >= 1 ? [NSString stringWithFormat:@"清理缓存(%.2fM)",tmpSize] : [NSString stringWithFormat:@"清理缓存(%.2fK)",tmpSize * 1024];

    [configDataArray replaceObjectAtIndex:2 withObject:clearCacheName];

    [configTableView reloadData];
}

 

清除缓存的方法(计算)

原文:http://www.cnblogs.com/liaods/p/4805421.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!