絕大多數應用中都存在著清楚緩存的功能护戳,形形色色代嗤,各有千秋簸州,現(xiàn)為大家介紹一種最基礎的清除緩存的方法。清除緩存基本上都是在設置界面的某一個Cell柿估,于是我們可以把清除緩存封裝在某一個自定義Cell中循未,如下圖所示:
具體步驟
使用注意:過程中需要用到第三方庫,請?zhí)崆鞍惭b好:SDWebImage、SVProgressHUD的妖。
1. 創(chuàng)建自定義Cell绣檬,命名為GYLClearCacheCell
重寫initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
方法,設置基本內容嫂粟,如文字等等娇未;主要代碼如下:
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
// 設置加載視圖
UIActivityIndicatorView *loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
[loadingView startAnimating];
self.accessoryView = loadingView;
//設置文字
self.textLabel.text = @"清楚緩存";
self.detailTextLabel.text = @"正在計算";
}
return self;
}
2. 計算緩存文件大小
緩存文件包括兩部分,一部分是使用SDWebImage緩存的內容星虹,其次可能存在自定義的文件夾中的內容(視頻零抬,音頻等內容),于是計算要分兩部分宽涌,主要代碼如下:
unsigned long long size =
[NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES).lastObject stringByAppendingPathComponent:@"CustomFile"].fileSize;
//fileSize是封裝在Category中的平夜。
size += [SDImageCache sharedImageCache].getSize; //CustomFile + SDWebImage 緩存
//設置文件大小格式
NSString sizeText = nil;
if (size >= pow(10, 9)) {
sizeText = [NSString stringWithFormat:@"%.2fGB", size / pow(10, 9)];
}else if (size >= pow(10, 6)) {
sizeText = [NSString stringWithFormat:@"%.2fMB", size / pow(10, 6)];
}else if (size >= pow(10, 3)) {
sizeText = [NSString stringWithFormat:@"%.2fKB", size / pow(10, 3)];
}else {
sizeText = [NSString stringWithFormat:@"%zdB", size];
}
上述兩個方法都是在主線程中完成的,如果緩存文件大小非常大的話卸亮,計算時間會比較長忽妒,會導致應用卡死,考慮到該問題兼贸,因此需要將上述代碼放到子線程中完成锰扶。
3. 添加手勢監(jiān)聽
對于監(jiān)聽點擊Cell可以使用代理也可以使用手勢監(jiān)聽,為了將完整的功能封裝到自定義Cell中寝受,于是我們使用手勢監(jiān)聽的方法來監(jiān)聽點擊Cell坷牛。
//計算完成后,回到主線程繼續(xù)處理很澄,顯示文件大小京闰,除去加載視圖,顯示箭頭甩苛,添加點擊事件
dispatch_async(dispatch_get_main_queue(), ^{
self.detailTextLabel.text = [NSString stringWithFormat:@"%@",sizeText];
self.accessoryView = nil;
self.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
[self addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(clearCacheClick)]];
});
4. 清除緩存
清除緩存也是分為兩部分蹂楣,一是清除SDWebImage的緩存,二是清除自定義文件緩存讯蒲,主要代碼如下:
- (void)clearCacheClick
{
[SVProgressHUD showWithStatus:@"正在清除緩存···"];
[SVProgressHUD setDefaultMaskType:SVProgressHUDMaskTypeBlack];
[[SDImageCache sharedImageCache] clearDiskOnCompletion:^{
dispatch_async(dispatch_get_global_queue(0, 0), ^{
NSFileManager *mgr = [NSFileManager defaultManager];
[mgr removeItemAtPath:GYLCustomFile error:nil];
[mgr createDirectoryAtPath:GYLCustomFile withIntermediateDirectories:YES attributes:nil error:nil];
dispatch_async(dispatch_get_main_queue(), ^{
[SVProgressHUD dismiss];
// 設置文字
self.detailTextLabel.text = nil;
});
});
}];
}
注意點:SDWebImage清除緩存是在子線程中進行的痊土,清除自定義文件內容應該也放在子線程中(刪除大文件可能比較耗時),為了保證兩者不沖突墨林,可以將刪除自定義文件內容放在SDWebImage緩存清除完畢之后進行赁酝,然后再回到主線程操作。
5. 其他注意點
a. 在計算文件大小過程中應該是不允許點擊Cell的旭等,如果有設置Cell的didSelectRowAtIndexPath方法酌呆,那么會導致手勢監(jiān)聽不能使用。于是需要在計算時不能點擊Cell搔耕。
b. 設置userInteractionEnabled=NO應放在設置文字之后隙袁,否則textLabel將顯示為灰色。
c. 當計算文件大小沒有結束的時,這個時候點擊返回菩收,自定義Cell不會被銷毀梨睁,他會執(zhí)行完剩下的代碼,可以使用dealloc方法來驗證娜饵,在此情況下而姐,可以使用弱引用的self來解決。
d. 當設置界面的cell比較多時划咐,如果還在計算緩存大小時,清除緩存的cell從視圖中消失钧萍,那么加載視圖動畫就會被停止褐缠,當返回到清除緩存cell時,看不到加載動畫风瘦。解決方案兩種方法:一個是在cell創(chuàng)建的代理方法中重新開啟動畫队魏;另一個是封裝到layoutSubviews方法中。
6. 使用
創(chuàng)建GYLSettingViewController繼承自UITableViewController万搔;首先為自定義Cell注冊胡桨;其次在數據源方法中使用自定義Cell;具體代碼如下:
#import "GYLSettingViewController.h"
#import "GYLClearCacheCell.h"
@implementation GYLSettingViewController
static NSString * const GYLClearCacheCellID = @"ClearCache";
static NSString * const GYLSettingCellID = @"Setting";
- (instancetype)init
{
return [self initWithStyle:UITableViewStyleGrouped];
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.view.backgroundColor = GYLBGColor;
self.navigationItem.title = @"設置";
[self.tableView registerClass:[GYLClearCacheCell class] forCellReuseIdentifier:GYLClearCacheCellID];
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:GYLSettingCellID];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 3;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 0 && indexPath.row == 0) {
return [[GYLClearCacheCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:GYLClearCacheCellID];
}
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:GYLSettingCellID];
cell.textLabel.text = [NSString stringWithFormat:@"section-%zd,row--%zd",indexPath.section,indexPath.row];
return cell;
}
@end