IOS讀取plist定義的內容

2021-07-25 01:14:09 字數 485 閱讀 3920

已經在自動建立的info.plist檔案中新增了乙個字典元素,元素儲存的是乙個陣列

字典的key是mainitems

//    nsstring *file = [[nsbundle mainbundle]pathforresource:@"info" oftype:@"plist"];

// nsmutabledictionary *dict = [[nsmutabledictionary alloc]initwithcontentsoffile:file];

nsdictionary *dict = [nsbundle mainbundle].infodictionary;

mainitems = [dict objectforkey:@"mainitems"];

最後獲取到的mainitems就是我們在info.plist中新增的陣列值

前面兩句注釋掉的同樣可以使用,可以達到同樣的目的

ios中讀取plist檔案內容的方法

provincesarray nsmutablearray alloc initwithcontentsoffile nsbundle mainbundle pathforresource provincesandcities.plist oftype nil plist的寫入是,你把你放在工程中的...

plist檔案的內容的讀取

方法一 nsstring str nsbundle mainbundle pathforresource flowers oftype plist nsarray arr nsarray arraywithcontentsoffole str 建立的資料型別是陣列array用此方法 nsdictio...

關於shell 如何讀取plist儲存內容

之前一直沒有用過shell 去處理plist形式的文件,今天學習試驗了一下,記錄下。首先建立乙份plist,內容自定義。原來mac這裡有乙個內建的plist tool usr libexec plistbuddy專門用來處理plist讀取操作,如下 p為plist path destpath usr...