1
我有兩個數組看起來像這樣一個的plist:的Xcode - 寫入,刪除到PList
我目前加載像這樣的plist:
// Find path of plist
NSString *path = [[NSBundle mainBundle] pathForResource:@"nameofPList" ofType:@"plist"];
// Read the data into arrays
NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
NSMutableArray *tableData = [dict objectForKey:@"array2"];
- 怎麼辦我將新項目寫入plist中的「array2」數組(代碼,不是手動)
- 如何從「array2」中刪除項目? (代碼,不是手動)
謝謝。
我想知道這個編輯是否也會反映在plist中。我正在嘗試相同的bt通過代碼的數組中的任何更改都不會反映在plist中... – luckyShubhra
是的,它會在您執行'[tableData writeToFile:atomically:]'時執行。 – trojanfoe
謝謝你.. :)我應該通過plist名稱作爲參數..在寫入文件..? – luckyShubhra