Skip to content

Instantly share code, notes, and snippets.

@kevinvanderlugt
Created February 6, 2013 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinvanderlugt/4723492 to your computer and use it in GitHub Desktop.
Save kevinvanderlugt/4723492 to your computer and use it in GitHub Desktop.
Concurrent enumeration over dictionary
[dict enumerateKeysAndObjectsWithOptions:NSEnumerationConcurrent
usingBlock:^(id key, id object, BOOL *stop) {
NSLog(@"%@ = %@", key, object);
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment