I'm trying to define a block that takes a block as an argument.

What's wrong with the following line of code?

id (^cacheResult)(NSString *, id(^)(void)) = ^(NSString *name, id(^)(void)block) {
    NSObject *item = nil;
    block();
    return item;
};

Why does the compiler keep giving errors like Parameter name omitted and Expected ")"?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted
id (^cacheResult)(NSString *, id(^)(void)) = ^(NSString *name, id(^block)(void)) {
    NSObject *item = nil;
    block();
    return item;
};

Blocks have similar syntax to function pointers. You have to declare block name after the ^

link|improve this answer
feedback

This is why typedef was invented. Embedding function pointers or block types like this is a pain. Try this instead:

typedef id (^ InnerBlock)(void);
typedef id (^ OuterBlock)(NSString *, InnerBlock);

It'll make working with block types a lot easier to read. :)

link|improve this answer
ah, thanks for the pointer(no pun intended). I find blocks definition really hard to read sometimes and typedef is indeed the perfect solution! Though my particular error was misunderstanding where to place the block variable name. – Tony Dec 30 '11 at 18:42
feedback

Did you possibly mean id(^block)(void) on the RHS of the assignment?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.