Iphone開發中無法讀取plist檔案的問題

2021-06-03 22:18:49 字數 714 閱讀 4184

有的書籍上關於要讀取plist檔案的說明是:先要在xcode檔案中建乙個plist檔案,然後把根型別改為陣列,用下面的**即可:

nsstring *path = [[nsbundle mainbundle] pathforresource:

@"drinkarray" oftype:@"plist"];

// build the array from the plist

nsmutablearray *array2 = [[nsmutablearray allobjective-c] initwithcontentsoffile:path];

// show the string values

for (nsstring *str in array2)

nslog(@"--%@", str);

參見:

<?xml version="1.0" encoding="utf-8"?> 

root

firecracker

lemon drop

mojito

改為:

<?xml version="1.0" encoding="utf-8"?> 

firecracker

lemon drop

mojito

iPhone開發之檔案建立 刪除 讀取 寫入

建立與刪除 建立檔案管理器 nsfilemanager filemanager nsfilemanager defaultmanager 獲取路徑 引數nsdocumentdirectory要獲取那種路徑 nsarray paths nssearchpathfordirectoriesindomai...

C 讀取EXCEL中數字無法讀取的方法

今天碰到這問題 看了這個才解決 無法讀取excel中的資料單元格。有資料,但是讀出來全是空值。解決方法 1.在匯入資料連線字串中,將imex 1加入,provider microsoft.jet.oledb.4.0 data source c data.xls extended properties...

iPhone開發中touch的事件

在viewcontroller中重寫touch的事件的方法體就可實現特定的touch功能 但這些touch事件會被加在之上的tableview或scrollview等遮蔽,希望知道解決方案的留下方法 下面 實現清掃事件 void touchesbegan nsset touches witheven...