清除快取資料--工具類封裝

weixin_33890499發表於2016-10-19
工具類下載地址: https://git.oschina.net/qjz.com/Clean/tree/master
使用方法

<pre>
//獲取快取資料夾路徑
NSString *cachPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask, YES) objectAtIndex:0];
//刪除應用快取資料
[FileUtil deleteSize: cachPath complete:^{
NSLog(@"已刪除");
}];
//獲取快取大小
float size=[FileUtil getSize: cachPath];
NSLog(@"%.2f",size);
</pre>

相關文章