@interface CZProfileViewController ()
@end
@implementation CZProfileViewController
static NSString *ID = @"cell";
- (void)viewDidLoad {
[super viewDidLoad];
UIBarButtonItem *settting = [[UIBarButtonItem alloc] initWithTitle:@"设置" style:UIBarButtonItemStyleBordered target:self action:@selector(settting)];
self.navigationItem.rightBarButtonItem = settting;
// [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:ID];
}
#pragma mark - 点击设置的时候调用
- (void)settting
{
}
#pragma mark - Table view data source
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ID];
}
cell.textLabel.text = @"清空图片缓存";
// 获取sdwebImage的缓存
// 50119318 bite
// b -> 50119318 / 1024.0
NSString *title = nil;
NSUInteger size = [SDImageCache sharedImageCache].getSize;
if (size > 1024 * 1024) {
CGFloat floatSize = size / 1024.0 / 1024.0;
title = [NSString stringWithFormat:@"%.fM",floatSize];
}else if (size > 1024){
CGFloat floatSize = size / 1024.0;
title = [NSString stringWithFormat:@"%.fKB",floatSize];
}else if(size > 0)
{
title = [NSString stringWithFormat:@"%ldKB",size];
}
cell.detailTextLabel.text = title;
// 17K
// 17K
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[[SDImageCache sharedImageCache] clearDisk];
[self.tableView reloadData];
}
清除图片缓存
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
相关阅读更多精彩内容
- 清除Glide缓存 Glide自带清除缓存的功能,分别对应Glide.get(context).clearDisk...