Skip to content

Instantly share code, notes, and snippets.

@PaulTaykalo
Created December 19, 2012 13:15
Show Gist options
  • Save PaulTaykalo/4336580 to your computer and use it in GitHub Desktop.
Save PaulTaykalo/4336580 to your computer and use it in GitHub Desktop.
Example
NSMutableSet * set = [NSMutableSet set];
[@[] enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
if ([obj isKindOfClass:[MyClass class]]) {
[set addObject:obj];
}
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment