iOS缓存文件大小显示功能和一键清理功能的实现方法
2019/7/9 23:09:32
本文主要是介绍iOS缓存文件大小显示功能和一键清理功能的实现方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
缓存占用了系统的大量空间,如何实时动态的显示缓存的大小,使用户清晰的了解缓存的积累情况,有效的进行一键清理呢?
为方便读者和未来自己更好理解,我们创建这样场景。(在表视图的清除缓存一单元格内创建一个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缓存文件大小显示功能和一键清理功能的实现方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对找一找教程网网站的支持!
这篇关于iOS缓存文件大小显示功能和一键清理功能的实现方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Axios库资料:新手入门必读教程
- 2024-11-11Axios库项目实战:新手入门教程
- 2024-09-29Axios库教程:初学者必备指南
- 2024-08-29Axios库资料:新手入门指南与基本使用教程
- 2024-03-14system bios shadowed
- 2024-03-14gabios
- 2024-02-07iOS应用提交上架的最新流程
- 2024-02-06打包 iOS 的 IPA 文件
- 2023-12-07uniapp打包iOS应用并通过审核:代码混淆的终极解决方案 ?
- 2023-11-25uniapp IOS从打包到上架流程(详细简单) 原创