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

利用SDWebImage 清理缓存

时间:2016-09-26 16:17:28      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:

新版的SDWebImage   已经计算好文件大小 只需要调用清理就够了

//获取缓存文件大小

        float tmpSize = [[SDImageCache sharedImageCache] getSize];

        NSString *clearCacheName =  [NSString stringWithFormat:@"确定清理缓存(%.2fM)?",tmpSize/1024/1024]; 

 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:nil message:clearCacheName delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];

        [alertView setTag:1001];

        [alertView show];

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {

    if (alertView.tag == 1001) {  

        if (buttonIndex == 1)   {

            [[SDImageCache sharedImageCache] clearDisk];

          }

    }

}

/*

注意  是clearDisk  不是cleanDisk

*/ 

利用SDWebImage 清理缓存

标签:

原文地址:http://www.cnblogs.com/Lovexiaohuzi/p/5909092.html

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