Skip to content

Instantly share code, notes, and snippets.

@bklimt
Created February 3, 2013 08:05
Show Gist options
  • Save bklimt/4700913 to your computer and use it in GitHub Desktop.
Save bklimt/4700913 to your computer and use it in GitHub Desktop.
Objective-C Blocks Example C
void exampleC_addBlockToArray(NSMutableArray *array) {
[array addObject:^{
printf("C\n");
}];
}
void exampleC() {
NSMutableArray *array = [NSMutableArray array];
exampleC_addBlockToArray(array);
void (^block)() = [array objectAtIndex:0];
block();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment