Skip to content

Instantly share code, notes, and snippets.

@casademora
Created May 28, 2013 19:34
Show Gist options
  • Save casademora/5665451 to your computer and use it in GitHub Desktop.
Save casademora/5665451 to your computer and use it in GitHub Desktop.
Simple each: category on NSArray, or NSSet
- (void) mgp_each:(void(^)(id))objectMap;
{
[self enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
objectMap(obj);
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment