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構造です
シナリオは、ユーザーが特定のアイテムを一度にアレイに追加および削除できるようにすることです。