These are blocks which add anonymous functions and function objects to Objective-C. See e.g. Introducing Blocks and Grand Central Dispatch :
Block objects (informally, “blocks”) are an extension to C, as well as Objective-C and C++, that make it easy for programmers to define self-contained units of work. Blocks are similar to — but far more powerful than — traditional function pointers. The key differences are:
- Blocks can be defined inline, as “anonymous functions.”
- Blocks capture read-only copies of local variables, similar to “closures” in other languages
Declaring a block variable:
void (^my_block)(void);
Assigning a block object to it:
my_block = ^(void){ printf("hello world
"); };
Invoking it:
my_block(); // prints “hello world
”
Accepting a block as an argument:
- (void)doSomething:(void (^)(void))block;
Using that method with an inline block:
[obj doSomeThing:^(void){ printf("block was called"); }];