辞書の配列に項目を設定したい。以下に「currentCityNode」というインスタンスのNSDictionaryがあります。その辞書には、(とりわけ)配列項目があります。配列アイテムは「TheConnections」と呼ばれます。以下のコードは配列を正常に読み取ります。
NSArray *theConnectionsArray = [currentCityNode objectForKey:@"TheConnections"];
(theConnectionsArray now contains the previously loaded values '3','7', and '9')
ここで、この配列の値の1つを設定します。2番目の値を「7」から「5」にします。
いくつかのバリエーションを試しましたが、まだ入手できません。
[currentCityNode addObject:notsurewhattoputhere forKey:@"TheConnections"];