zoukankan      html  css  js  c++  java
  • SDWebImage手动清除缓存的方法

    1.找到SDImageCache类

    2.添加如下方法:

    1. - (float)checkTmpSize  
    2. {  
    3.     float totalSize = 0;  
    4.     NSDirectoryEnumerator *fileEnumerator = [[NSFileManager defaultManager] enumeratorAtPath:diskCachePath];  
    5.     for (NSString *fileName in fileEnumerator)  
    6.     {  
    7.         NSString *filePath = [diskCachePath stringByAppendingPathComponent:fileName];  
    8.   
    9.         NSDictionary *attrs = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath error:nil];  
    10.   
    11.         unsigned long long length = [attrs fileSize];  
    12.   
    13.         totalSize += length / 1024.0 / 1024.0;  
    14.     }  
    15. //    NSLog(@"tmp size is %.2f",totalSize);   
    16.   
    17.     return totalSize;  
    18. }  
    - (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.在设置里这样使用

    1. #pragma 清理缓存图片   
    2.   
    3. - (void)clearTmpPics  
    4. {  
    5.     [[SDImageCache sharedImageCache] clearDisk];  
    6.   
    7. //    [[SDImageCache sharedImageCache] clearMemory];//可有可无   
    8.   
    9.     DLog(@"clear disk");      
    10.   
    11.     float tmpSize = [[SDImageCache sharedImageCache] checkTmpSize];  
    12.   
    13.     NSString *clearCacheName = tmpSize >= 1 ? [NSString stringWithFormat:@"清理缓存(%.2fM)",tmpSize] : [NSString stringWithFormat:@"清理缓存(%.2fK)",tmpSize * 1024];  
    14.   
    15.     [configDataArray replaceObjectAtIndex:2 withObject:clearCacheName];  
    16.   
    17.     [configTableView reloadData];  
    18. }  
  • 相关阅读:
    转:使用awk命令获取文本的某一行,某一列
    zookeeper单机伪集群配置
    “格式化HDFS后,HMaster进程启动失败”的问题解决
    php生成缩略图
    Sphinx 排序模式 SetSortMode
    shell 脚本中 命令
    coreseek(sphinx)错误:WARNING: attribute 'id' not found
    sphinx (coreseek)——3、区段查询 与 增量索引实例
    sphinx (coreseek)——2、区段查询实例
    sphinx(coreseek)——1、增量索引
  • 原文地址:https://www.cnblogs.com/monnRedShine/p/3892331.html
Copyright © 2011-2022 走看看