Guest User

Untitled

a guest
Jul 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. @interface ViewController ()
  2.  
  3. @property (nonatomic, copy) void (^block)(void);
  4.  
  5. @end
  6.  
  7. @implementation DetailViewController
  8.  
  9. - (void)viewDidLoad {
  10. [super viewDidLoad];
  11.  
  12. self.block = ^{
  13. NSLog(@"%@", self);
  14. };
  15. }
  16.  
  17. @end
Add Comment
Please, Sign In to add comment