SDWebImage清除缓存

2016-04-19  本文已影响68人  工藤辞辞

float tmpSize = [[SDImageCache sharedImageCache] checkTmpSize];

_clearCacheName = tmpSize >= 1 ? [NSString stringWithFormat:@"清理缓存(%.2fM)",tmpSize] : [NSString stringWithFormat:@"清理缓存(%.2fK)",tmpSize * 1024];

UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"提示"message:_clearCacheName  preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];

UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault  handler:^(UIAlertAction * action) {[[SDImageCache sharedImageCache] clearDisk];}];

上一篇 下一篇

猜你喜欢

热点阅读