Guest User

Untitled

a guest
Jun 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. int main(int argc, char * argv[]) {
  2. @autoreleasepool {
  3. NSString *(^someAction)(void) = ^{
  4. return @"someAction";
  5. };
  6. NSLog(@"%@ ", someAction());
  7. return 0;
  8. }
  9. }
  10.  
  11. NSLog(@"class: %@", [someAction class]);
Add Comment
Please, Sign In to add comment