-5
私は子供向けのアプリを開発しています。 https://developer.apple.com/library/content/documentation/Cocoa:データリンゴとアリ私はココアコレクションの基本を理解するためにドキュメントを読んでお勧めしますobjective-cを使って辞書からデータを取り出す方法
私は子供向けのアプリを開発しています。 https://developer.apple.com/library/content/documentation/Cocoa:データリンゴとアリ私はココアコレクションの基本を理解するためにドキュメントを読んでお勧めしますobjective-cを使って辞書からデータを取り出す方法
NSArray *dataFromA = data[@"A"];
//Apple and Ant
NSString *apple = dataFromA[0];
NSString *ant = dataFromA[1];
//or
NSString *apple = data[@"A"][0];
NSString *ant = data[@"A"][1];
を取得する方法
/Conceptual/Collections/Collections.html – erkanyildizしかし、私は理解していない、リンゴ、アリ、ボール、バットの価値を得る方法 – jesti
[NSDictionaryの読み取りデータ]の可能な複製(https://stackoverflow.com/questions/4178962/nsdictionary-データを読み取る) –