Mac OS,讀取plist檔案的方法

2021-06-05 18:28:13 字數 348 閱讀 7148

//獲取plist檔案的路徑 

nsstring *plistpath = [[nsbundle mainbundle] pathforresource:@"檔名" oftype:@"plist"];   

//讀取到乙個nsdictionary   

nsdictionary *dictionary = [[nsdictionary alloc] initwithcontentsoffile:plistpath];   

//也可以讀取到乙個nsarray   

nsarray *array = [[nsarray alloc] initwithcontentsoffile:plistpath];  

plist檔案的內容的讀取

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

plist檔案的讀取和使用

nsbundle mainbundle pathforresource sysmessagering oftype plist plistpath 2 可以通過filemanager獲取該目錄下的所有檔案,來檢視獲取目錄是否正確 nsfilemanagerdefaultmanager content...

讀取和寫入plist檔案

plist檔案是標準的xml檔案,在cocoa中可以很簡單地使用。這裡介紹一下使用方法 以下 在mac和iphone中均適用。寫入plist檔案 nsmutabledictionary dict nsmutabledictionary alloc initwithcontentsoffile sam...