Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

3 Answers

up vote 108 down vote accepted
- ( void )myMethodTakingPredicate: ( BOOL ( ^ )( int ) )predicate
share|improve this answer
3  
+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
2  
- ( void )myMethodTakingPredicate: ( BOOL ( ^ )( NSString *name, NSString *age ) )predicate { //How Should I Access name & age here...? } – Mohammad Abdurraafay Sep 12 '11 at 8:01
2  
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 '12 at 3:23
show 1 more comment

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");
    }
}
share|improve this answer
Is there a reason you don't use the [NSString isEqualToString:] method? – orkoden Mar 22 at 13:53
Nothing specific. I'm just use to use 'compare:' a lot. '[NSString isEqualToString:]' is a better way though. – Mohammad Abdurraafay Mar 25 at 5:28
Good and Easy explanation ...... +1 – The Tiger yesterday

Another example (this issue benefits from multiple):

@implementation CallbackAsyncClass {
void (^_loginCallback) (NSDictionary *response);
}
// …


- (void)loginWithCallback:(void (^) (NSDictionary *response))handler {
    // Do something async / call URL
    _loginCallback = Block_copy(handler);
    // response will come to the following method (how is left to the reader) …
}

- (void)parseLoginResponse {
    // Receive and parse response, then make callback

   _loginCallback(response);
   Block_release(_loginCallback);
   _loginCallback = nil;
}


// this is how we make the call:
[instanceOfCallbackAsyncClass loginWithCallback:^(NSDictionary *response) {
   // respond to result
}];
share|improve this answer
Nice addition for managing the block memory. +1 – Ryan Poolos Feb 21 at 14:35

protected by Macmade Oct 6 '12 at 22:44

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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