Skip to content

Instantly share code, notes, and snippets.

View aschuch's full-sized avatar
🦩
👨🏻‍💻

Alexander Schuch aschuch

🦩
👨🏻‍💻
View GitHub Profile
@aschuch
aschuch / Blocks.m
Last active December 22, 2015 12:59 — forked from twobitlabs/gist:4226365
Blocks cheat sheet
/**
* Blocks cheat sheet
*/
///////////////////////////////////
#pragma mark - block typedef
///////////////////////////////////
typedef void(^Block)();
typedef void(^ConditionalBlock)(BOOL);
typedef NSString*(^BlockThatReturnsString)();