Skip to content

Instantly share code, notes, and snippets.

@soapyigu
Last active July 21, 2018 23:17
Show Gist options
  • Save soapyigu/0e4d73928304d349a46d5d0ea35e1471 to your computer and use it in GitHub Desktop.
Save soapyigu/0e4d73928304d349a46d5d0ea35e1471 to your computer and use it in GitHub Desktop.
@interface ViewController ()
@property (nonatomic, copy) void (^block)(void);
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.block = ^{
NSLog(@"%@", self);
};
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment