JSON
高レベルのデータをフォーマットで返すAPIを呼び出しています。NSDictionary
その後、これは同様に処理されます。
NSDictionary *results = [NSJSONSerialization JSONObjectWithData:JSONData options:kNilOptions error:&error];
これをログに記録すると、次のような非常に複雑な結果になる可能性があります。
{
one = {
oneone = 12345;
onetwo = "Hello";
onethree = "How Are You";
};
two = 42;
three = {
threeone = {
threeoneone = "Name";
threeonetwo = {
threeonetwoone = "100";
threeonetwotwo = "26";
};
etc etc etc
今、私は呼び出すことによって「three」の内容を[results objectForKey:@"three"]
取得しますが、「threeonetwoone」の値を取得するにはどうすればよいですか?
私はいくつかのことを試みましたが、役に立ちませんでした。