plist 儲存資料學習

2021-06-27 20:38:22 字數 411 閱讀 6503

/**

載入plist的資料

特別重要的類:nsbundle :乙個nsbundle對應乙個資料夾

利用nsbundle就能訪問手機裡面的任何資源

*///1、得到對應所有資源的bundle

nsbundle *bundle = [nsbundle mainbundle];

//2、通過bundle得到對應資源的全路徑

nsstring *aboultpath = [bundle pathforresource:@"imagedata" oftype:@"plist"];

//3、使用對應的資源

self.imgdataarrays = [nsarray arraywithcontentsoffile:aboultpath];

iOS 資料儲存 plist檔案

屬性列表是一種明文的輕量級儲存方式,其儲存格式有多種,最常規格式為xml格式。在我們建立乙個新的專案的時候,xcode會自動生成乙個info.plist檔案用來儲存專案的部分系統設定。plist只能用陣列 nsarray 或者字典 nsdictionary 進行讀取,由於屬性列表本身不加密,所以安全...

Plist儲存簡述

一 應用沙盒結構分析 每個ios應用都有自己的應用沙盒 處於檔案系統目錄內 與其他檔案系統隔離。nsstring doc nssearchpathfordirectoriesindomains nsdocumentdirectory,nsuserdomainmask,yes lastobject n...

28 資料儲存 plist 偏好設定 歸檔

documents 儲存應用執行時生成的需要持久化的資料,itunes同步裝置時會備份該目錄。例如,遊戲應用可將遊戲存檔儲存在該目錄 tmp 儲存應用執行時所需的臨時資料,使用完畢後再將相應的檔案從該目錄刪除。應用沒有執行時,系統也可能會清除該目錄下的檔案。itunes同步裝置時不會備份該目錄 li...