Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
のコンテンツを表示するにはNSMutableDictionary?
NSMutableDictionary
コンソールでコンテンツを印刷するだけです:
NSLog(@"%@", [yourDict description]);
ディクショナリ要素を反復処理するには:
for (id key in [yourDict allKeys]){ id obj = [yourDict objectForKey: key]; // Do something with them }