博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于清理缓存的解决方案
阅读量:4962 次
发布时间:2019-06-12

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

第一:首先在AppDelegate添加两个方法

- (int)cacheSize;

-(void)clearCache;

 

#pragma makr -cacheSize

- (int)cacheSize {
    int imageChaheSize = [[SDImageCache sharedImageCache] getSize] + [[SDImageCache sharedImageCache] getMemorySize];
    
    int dataSize = 0;
    NSString* docPath = [NSHomeDirectory() stringByAppendingPathComponent: @"Documents"];
    NSDirectoryEnumerator *fileEnumerator = [[NSFileManager defaultManager] enumeratorAtPath:docPath];
    for (NSString *fileName in fileEnumerator)
    {
        NSString *filePath = [docPath stringByAppendingPathComponent:fileName];
        NSDictionary *attrs = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath error:nil];
        dataSize += [attrs fileSize];
    }
    
    return imageChaheSize + dataSize;
}
-(void)clearCache {
    [[SDImageCache sharedImageCache] clearMemory];
    [[SDImageCache sharedImageCache] clearDisk];
    
    NSString* docPath = [NSHomeDirectory() stringByAppendingPathComponent: @"Documents"];
    NSDirectoryEnumerator *fileEnumerator = [[NSFileManager defaultManager] enumeratorAtPath:docPath];
    for (NSString *fileName in fileEnumerator)
    {
        NSString *filePath = [docPath stringByAppendingPathComponent:fileName];
        [[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
    }
    
}

第二:在要用到的地方调用

一般是在表格中使用

在cell中添加此代码

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

  cell.textLabel.text = @"清理缓存";

      UILabel *accessory = [[UILabel alloc] init];
      accessory.backgroundColor = [UIColor clearColor];
      accessory.textAlignment = UITextAlignmentCenter;
      accessoryView.text = [NSString stringWithFormat:@"%.1fMB", [AppDelegate appDelegate].cacheSize/1024.0/1024.0];
       cell.accessoryView = accessory;

}

最后一步,点击清理缓存

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

  if ([AppDelegate appDelegate].cacheSize > 0) {

                [[AppDelegate appDelegate] clearCache];

      UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"清理缓存" message:@"清理成功!" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];

                [alert show];  
                [_tableView reloadData];//刷新表格
       } else {
                UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"清理缓存" message:@"没有缓存" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
                [alert show];
       }

}

 

 

 

 

 

 

转载于:https://www.cnblogs.com/lanskill/archive/2013/06/08/3126627.html

你可能感兴趣的文章
IOS FMDB
查看>>
编码总结,以及对BOM的理解
查看>>
九涯的第一次
查看>>
PHP5.3的VC9、VC6、Thread Safe、Non Thread Safe的区别
查看>>
Android中全屏或者取消标题栏
查看>>
处理器管理与进程调度
查看>>
页面懒加载
查看>>
asp.net源码收集
查看>>
Java--知识点运用
查看>>
Java - Float与Double类型比较
查看>>
vue里图片压缩上传组件
查看>>
生成随机数(无论几位)
查看>>
【转载】git/github初级运用自如
查看>>
Vue update loop 的问题
查看>>
EntityFrameworkCore(efcore)在与 MySQL 连接使用中的问题
查看>>
实验吧之【拐弯抹角】(url伪静态)
查看>>
System.TimeDate
查看>>
Progress
查看>>
Python内置函数
查看>>
TensorFlow学习笔记(二)-- MNIST机器学习入门程序学习
查看>>