1.清除本地資料庫中的資料
2. 清除caches目錄下檔案
nsarray *paths = nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask,yes);
nsstring *cachesdir = [paths objectatindex:0];
nsfilemanager* manager = [nsfilemanager defaultmanager];
if ([manager fileexistsatpath:cachesdir])
3. 清除你所儲存的快取檔案nsarray *patharray = @[@"normalbidlistinfo.txt",@"activitybidlistinfo.txt"];
for (nsstring *pathname in patharray)
4.清理sdwebimage快取
獲取的快取大小
[sdimagecache sharedimagecache]
getsize];
清理記憶體快取,清理記憶體中快取的資源,釋放記憶體資源。[[sdimagecache sharedimagecache]
clearmemory];
清理磁碟快取的介面[[sdimagecache sharedimagecache]
cleardisk];
iOS快取清理功能
移動應用在處理網路資源時,一般都會做離線快取處理,其中以快取最為典型,其中很流行的離線快取框架為sdwebimage。今天介紹的離線快取功能的實現,主要分為快取檔案大小的獲取 刪除快取檔案的實現。由於快取檔案存在沙箱中,我們可以通過nsfilemanager api來實現對快取檔案大小的計算。flo...
iOS 清理檔案快取
本文摘自 msp的昌偉哥哥 ios開發 清理快取功能的實現 摘下來的目的就是為了能夠學習。還望看到文章的同學,前往原創的。感謝msp的昌偉哥哥的分享精神。移動應用在處理網路資源時,一般都會做離線快取處理,其中以快取最為典型,其中很流行的離線快取框架為sdwebimage。今天介紹的離線快取功能的實現...
iOS開發 WKWebView快取清理
wkwebview清除快取只能ios9使用,低於ios9執行會崩潰哦!所以,為了適配ios7和ios8,還是要做版本判斷 if uidevice currentdevice systemversion intvalue 9.0 nsarray types wkwebsitedatatypememor...