我在 XCODE 的 plist 文件内的数组中添加和删除项目时遇到问题。
我可以通过以下代码读取数组:
// Path to the plist (in the application bundle) ------>>>>>
NSString *path = [[NSBundle mainBundle] pathForResource:
@"Fav" ofType:@"plist"];
// Build the array from the plist ------>>>
NSDictionary *favs = [[NSMutableDictionary alloc] initWithContentsOfFile: path];
Resepies = [favs objectForKey:@"Root"];
这是我的 plist 结构
场景是让用户一次从数组中添加和删除特定项目。