1 2 3 4 5 6
void (^(^complexBlock)(void (^)(void)))(void) = ^(void (^aBlock)(void)) { NSLog(@"Good"); return ^{ NSLog(@"Nice"); }; };