• 清除缓存的实现


     // 在子线程计算缓存大小
            dispatch_async(dispatch_get_global_queue(0, 0), ^{// 获得缓存文件夹路径
                unsigned long long size = file.fileSize;
                size += [SDImageCache sharedImageCache].getSize;
                NSString *sizeText = nil;
                if (size >= pow(10, 9)) { // size >= 1GB
                    sizeText = [NSString stringWithFormat:@"%.2fGB", size / pow(10, 9)];
                } else if (size >= pow(10, 6)) { // 1GB > size >= 1MB
                    sizeText = [NSString stringWithFormat:@"%.2fMB", size / pow(10, 6)];
                } else if (size >= pow(10, 3)) { // 1MB > size >= 1KB
                    sizeText = [NSString stringWithFormat:@"%.2fKB", size / pow(10, 3)];
                } else { // 1KB > size
                    sizeText = [NSString stringWithFormat:@"%zdB", size];
                }
    // 生成文字
                NSString *text = [NSString stringWithFormat:@"清除缓存(%@)", sizeText];
                
                // 回到主线程
                dispatch_async(dispatch_get_main_queue(), ^{
                    // 设置文字
                  // 恢复点击事件
                    self.userInteractionEnabled = YES;
                });
            });
        }
        return self;
    }
    /**
     *  清除缓存
     */
    - (void)clearCache
    {
        // 弹出指示器
        [SVProgressHUD showWithStatus:@"正在清除缓存..." maskType:SVProgressHUDMaskTypeBlack];
        
        // 删除SDWebImage的缓存
        [[SDImageCache sharedImageCache] clearDiskOnCompletion:^{
            // 删除自定义的缓存
            dispatch_async(dispatch_get_global_queue(0, 0), ^{
                NSFileManager *mgr = [NSFileManager defaultManager];
                [mgr removeItemAtPath:file error:nil];
                [mgr createDirectoryAtPath:XMGCustomCacheFile withIntermediateDirectories:YES attributes:nil error:nil];
                // 所有的缓存都清除完毕
                dispatch_async(dispatch_get_main_queue(), ^{
                    // 隐藏指示器
                    [SVProgressHUD dismiss];
                    
                    // 设置文字
                    self.textLabel.text = @"清除缓存(0B)";
                });
            });
        }];
    }
  • 相关阅读:
    前端有未来吗?
    谈技术人员思维转变
    程序员职场背锅甩锅指南
    9 个非常实用的网络调试命令,你会用几个呢?
    nginx获取客户端请求的真实IP
    10个VSCode高效开发插件
    作为一个技术Leader,要如何去提升团队的技术氛围
    前端程序员要懂的 UI 设计知识
    【云速建站】如何实现多用户权限管理
    补习系列(10)-springboot 之配置读取
  • 原文地址:https://www.cnblogs.com/yintingting/p/5467817.html
Copyright © 2020-2023  润新知