Skip to content

Instantly share code, notes, and snippets.

@bklimt
Created February 3, 2013 08:33
Show Gist options
  • Save bklimt/4700955 to your computer and use it in GitHub Desktop.
Save bklimt/4700955 to your computer and use it in GitHub Desktop.
Objective-C Blocks Example E
typedef void (^eBlock)();
eBlock exampleE_getBlock() {
char e = 'E';
void (^block)() = ^{
printf("%c\n", e);
};
return block;
}
void exampleE() {
eBlock block = exampleE_getBlock();
block();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment