Skip to content

Instantly share code, notes, and snippets.

@irace
Created July 23, 2012 14:37
Show Gist options
  • Save irace/3163951 to your computer and use it in GitHub Desktop.
Save irace/3163951 to your computer and use it in GitHub Desktop.
Objective-C block syntax
typedef void (^BlockType)(id);
void (^blockName)(void) = ^{
// Code
};
@property (nonatomic, copy) void (^blockName)(void);
- (id)initWithBlock:(void(^)(void))blockName;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment