Is it possible to specify a method block parameter in Objective-C without using a typedef? It must be, like function pointers, but I can't hit on the winning syntax without using an intermediate typedef:

typedef BOOL (^PredicateBlock_t)(int);
- (void) myMethodTakingPredicate:(PredicateBlock_t)predicate

only the above compiles, all these fail:

-  (void) myMethodTakingPredicate:( BOOL(^block)(int) ) predicate
-  (void) myMethodTakingPredicate:BOOL (^predicate)(int)

and I can't remember what other combinations I've tried.

link|improve this question

feedback

2 Answers

up vote 37 down vote accepted
- ( void )myMethodTakingPredicate: ( BOOL ( ^ )( int ) )predicate
link|improve this answer
1  
+1, though a typedef should really be preferred for more complicated cases. – larsmans Mar 30 '11 at 13:35
thanks, that was driving me nuts – Bogatyr Mar 30 '11 at 14:07
- ( void )myMethodTakingPredicate: ( BOOL ( ^ )( NSString *name, NSString *age ) )predicate { //How Should I Access name & age here...? } – Mohammad Abdurraafay Sep 12 '11 at 8:01
Those are just parameter names. Just use them. – Macmade Sep 12 '11 at 8:48
@larsmans I agree, unless this particular predicate/block is used in a lot of places where it would be more clear to have it typedef'd. Apple has defined a number of blocks that were quite simple, but did so such that it was easy to find what they wanted in documentation. – mtmurdock Feb 29 at 3:23
feedback

This is how it goes, for example...

[self smartBlocks:@"Pen" youSmart:^(NSString *response) {
        NSLog(@"Response:%@", response);
    }];


- (void)smartBlocks:(NSString *)yo youSmart:(void (^) (NSString *response))handler {
    if ([yo compare:@"Pen"] == NSOrderedSame) {
        handler(@"Ink");
    }
    if ([yo compare:@"Pencil"] == NSOrderedSame) {
        handler(@"led");
    }
}
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.