iOS缓存文件大小显示功能和一键清理功能的实现方法
程序员文章站
2024-02-12 19:47:16
缓存占用了系统的大量空间,如何实时动态的显示缓存的大小,使用户清晰的了解缓存的积累情况,有效的进行一键清理呢?
为方便读者和未来自己更好理解,我们创建这样场景。(在表视图...
缓存占用了系统的大量空间,如何实时动态的显示缓存的大小,使用户清晰的了解缓存的积累情况,有效的进行一键清理呢?
为方便读者和未来自己更好理解,我们创建这样场景。(在表视图的清除缓存一单元格内创建一个uilabel *cachelabel用于显示当前缓存,当点击单元格弹出提示框,点击确定,清除缓存)。
下面是实现代码:
#pragma mark - 计算缓存大小 - (nsstring *)getcachesize { //定义变量存储总的缓存大小 long long sumsize = 0; //01.获取当前图片缓存路径 nsstring *cachefilepath = [nshomedirectory() stringbyappendingpathcomponent:@"library/caches"]; //02.创建文件管理对象 nsfilemanager *filemanager = [nsfilemanager defaultmanager]; //获取当前缓存路径下的所有子路径 nsarray *subpaths = [filemanager subpathsofdirectoryatpath:cachefilepath error:nil]; //遍历所有子文件 for (nsstring *subpath in subpaths) { //1).拼接完整路径 nsstring *filepath = [cachefilepath stringbyappendingformat:@"/%@",subpath]; //2).计算文件的大小 long long filesize = [[filemanager attributesofitematpath:filepath error:nil]filesize]; //3).加载到文件的大小 sumsize += filesize; } float size_m = sumsize/(1000*1000); return [nsstring stringwithformat:@"%.2fm",size_m]; } #pragma mark - 清除缓存提示(uitableviewdatasourcedelegate) - (void)tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath { if (indexpath.row == 0) { uialertview *alertview = [[uialertview alloc]initwithtitle:@"缓存清除" message:@"确定清除缓存?" delegate:self cancelbuttontitle:@"取消" otherbuttontitles:@"确定",nil]; [alertview show]; } } #pragma mark - uialertviewdelegate方法实现 - (void)alertview:(uialertview *)alertview clickedbuttonatindex:(nsinteger)buttonindex { nslog(@"代码执行到此"); //判断点击的是确认键 if (buttonindex == 1) { //01...... nsfilemanager *filemanager = [nsfilemanager defaultmanager]; //02..... nsstring *cachefilepath = [nshomedirectory() stringbyappendingpathcomponent:@"library/caches"]; //03...... [filemanager removeitematpath:cachefilepath error:nil]; //04刷新第一行单元格 nsindexpath *indexpath = [nsindexpath indexpathforitem:0 insection:0]; [_tableview reloadrowsatindexpaths:@[indexpath] withrowanimation:uitableviewrowanimationfade]; //05 :04和05使用其一即可 [_tableview reloaddata];//刷新表视图 } @pragma -mark -放置于.m文件首段较为合适,本demo仅做功能性展示,实时监测缓存大小,从其他界面跳转到本页面,也需要刷新下表视图 - (void)viewwillappear:(bool)animated { [super viewwillappear:yes]; [_tableview reloaddata]; }
以上所述是小编给大家介绍的ios缓存文件大小显示功能和一键清理功能的实现方法,希望对大家有所帮助