Skip to content

Instantly share code, notes, and snippets.

@Constellation
Forked from azu/gist:1095172
Created July 20, 2011 15:31
Show Gist options
  • Save Constellation/1095183 to your computer and use it in GitHub Desktop.
Save Constellation/1095183 to your computer and use it in GitHub Desktop.
// NSDictionaryをループする
NSDictionary *dict =
[NSDictionary dictionaryWithObjectsAndKeys:
@"futaba", @"name", [NSNumber numberWithInt:4], @"age",
@"white", @"color", nil];
for (id key in dict) {
NSLog(@"key: %@, value: %@\n",
key,
[dict objectForKey:key]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment