plist檔案操作

2021-07-27 12:29:00 字數 725 閱讀 4147

//將陣列存入plist檔案

nsarray *array = @[@"1",@"2",@"3"];

//選擇yes使檔案在編寫意外中斷時原始檔不損毀

[array writetofile:@"/users/macbook/documents/學習練手/test/test.plist" atomically:yes];

//將字典存入plist檔案

nsdictionary *dic = @;

[dic writetofile:@"/users/macbook/documents/學習練手/test/test1.plist" atomically:yes];

//讀取plist檔案中陣列

nsarray *resultarr = [nsarray arraywithcontentsoffile:@"/users/macbook/documents/學習練手/test/test.plist"];

nslog(@"%@",resultarr);

//讀取plist檔案中字典

nsdictionary *resultdic = [nsdictionary dictionarywithcontentsoffile:@"/users/macbook/documents/學習練手/test/test1.plist"];

nslog(@"%@",resultdic);

Plist檔案的操作

plist檔案是蘋果自帶的配置檔案 主要是以xml的格式進行匹配的 建立的時候 選擇resource的plist來進行建立 他主要有兩種型別 一種是字典型別的 還有一種是陣列型別的 可以通過新增子元素來進行建立 通過陣列來解析plist檔案 將plist檔案解析後,儲存在乙個陣列中,隨後將其輸出即可...

檔案操作之plist檔案讀取

有時開發需要把一些資訊用plist儲存在本地 存寫 獲取應用沙盒的根目錄 nsstring homepath nshomedirectory 拼接路徑 nsstring docpath homepath documents 第二種方法 docpath nssearchpathfordirectori...

plist檔案修改

plist全名是 property list,屬性列表檔案,它是一種用來儲存序列化後的物件的檔案。檔案是xml格式的。檔案讀取 nsmutablearray data nsmutablearray alloc initwithcontentsoffile filepath 檔案寫入 data wri...