博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
新浪微博客户端(61)-清除图片缓存
阅读量:6135 次
发布时间:2019-06-21

本文共 1089 字,大约阅读时间需要 3 分钟。

 

- (void)viewDidLoad {    [super viewDidLoad];        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"清除缓存" style:UIBarButtonItemStylePlain target:self action:@selector(clearCache)];         // 获取SDwebImage图片所占的磁盘容量大小(以byte为单位)    NSUInteger byteSize = [SDImageCache sharedImageCache].getSize;    double size = byteSize / 1000.0 / 1000.0; // mac和ios系统在byte和kb之前互转时,比是1000;        self.navigationItem.title = [NSString stringWithFormat:@"缓存%.1fM",size];}// 清除缓存- (void)clearCache {    // 创建一个小菊花    UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:indicator];    [indicator startAnimating];        // 清空SDWebImage缓存图片    [[SDImageCache sharedImageCache] clearDisk];        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"清除缓存" style:UIBarButtonItemStylePlain target:self action:@selector(clearCache)];    self.navigationItem.title = @"缓存0M";}

最终效果:

 

转载地址:http://lveua.baihongyu.com/

你可能感兴趣的文章
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
淘宝的几个架构图
查看>>
Android扩展 - 拍照篇(Camera)
查看>>
JAVA数组的定义及用法
查看>>
充分利用HTML标签元素 – 简单的xtyle前端框架
查看>>
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
登记申请汇总
查看>>