美文网首页
SDWebImage清除缓存

SDWebImage清除缓存

作者: 工藤辞辞 | 来源:发表于2016-04-19 15:49 被阅读68次

float tmpSize = [[SDImageCache sharedImageCache] checkTmpSize];

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

UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"提示"message:_clearCacheName  preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];

UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault  handler:^(UIAlertAction * action) {[[SDImageCache sharedImageCache] clearDisk];}];

相关文章

网友评论

      本文标题:SDWebImage清除缓存

      本文链接:https://www.haomeiwen.com/subject/jxqzlttx.html