web-dev-qa-db-fra.com

Déclarer un paramètre de méthode de bloc sans utiliser de typedef

Est-il possible de spécifier un paramètre de bloc de méthode dans Objective-C sans utiliser un typedef? Ce doit être, comme les pointeurs de fonction, mais je ne peux pas utiliser la syntaxe gagnante sans utiliser un typedef intermédiaire:

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

seulement ce qui précède compile, tous ceux-ci échouent:

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

et je ne me souviens plus des autres combinaisons que j'ai essayées.

143
Bogatyr
- ( void )myMethodTakingPredicate: ( BOOL ( ^ )( int ) )predicate
237
Macmade

Voici comment ça se passe, par exemple ...

[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");
    }
}
64

http://fuckingblocksyntax.com

En tant que paramètre de méthode:

- (void)someMethodThatTakesABlock:(returnType (^)(parameterTypes))blockName;
19
funroll

Autre exemple (ce problème profite de plusieurs):

@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
}];
9
bshirley

Encore plus clair!

[self sumOfX:5 withY:6 willGiveYou:^(NSInteger sum) {
    NSLog(@"Sum would be %d", sum);
}];

- (void) sumOfX:(NSInteger)x withY:(NSInteger)y willGiveYou:(void (^) (NSInteger sum)) handler {
    handler((x + y));
}
2
Hemang