• sdwebimage 相关


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

  • 相关阅读:
    arm-linux-3.4.2移植for2440
    编译内核是出现:arch/arm/mm/tlb-v4wbi.S:64:error: too many positional arguments
    poj3050 Hopscotch
    poj3187 Backward Digit Sums
    poj2718 Smallest Difference
    hihocoder offer收割编程练习赛10 C 区间价值
    poj1862 Stripies
    poj3262 Protecting the Flowers
    poj2229 Sumsets
    poj2385 Apple Catching
  • 原文地址:https://www.cnblogs.com/cdp-snail/p/4918593.html
Copyright © 2020-2023  润新知