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

sdwebimage 相关

时间:2015-10-28 22:32:47      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

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

3.在设置里这样使用

#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];  

sdwebimage 相关

标签:

原文地址:http://www.cnblogs.com/cdp-snail/p/4918593.html

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