I’d like to get rid of the complex type declaration before my one-shot blocks:
void (^blockHelperA)(NSString*, NSString*) = ^(NSString *foo, NSString *bar) {…};
This could be rewritten as:
id blockHelperB = ^(NSString *foo, NSString *bar) {…};
Which looks better and compiles, but can’t be directly executed:
// “Called object type 'id' is not a function or function pointer”
blockHelperB(@"Foo", @"Bar");
Then there’s a dispatch_block_t type, but that’s just a simple shorthand:
typedef void (^dispatch_block_t)(void);
Is there a way to get rid of the precise type declaration and still execute the block afterwards in a simple way? I know I can do this:
id foo = ^{ return @"bar"; };
dispatch_sync(dispatch_get_current_queue(), foo);
…but that just shifts the noise from the declaration to execution.