Объявите параметр метода блока без использования typedef - PullRequest
143 голосов
/ 30 марта 2011

Можно ли указать параметр блока метода в Objective-C без использования typedef?Должно быть, как и указатели на функции, но я не могу использовать синтаксис победы, не используя промежуточный typedef:

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

только вышеупомянутые компиляции, все они терпят неудачу:

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

и я не могу вспомнить, какие еще комбинации я пробовал.

Ответы [ 5 ]

237 голосов
/ 30 марта 2011
- ( void )myMethodTakingPredicate: ( BOOL ( ^ )( int ) )predicate
63 голосов
/ 13 сентября 2011

Вот как это происходит, например ...

[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");
    }
}
18 голосов
/ 08 сентября 2014

http://fuckingblocksyntax.com

В качестве параметра метода:

- (void)someMethodThatTakesABlock:(returnType (^)(parameterTypes))blockName;
9 голосов
/ 07 января 2013

Другой пример (в этом выпуске многократное использование):

@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
}];
2 голосов
/ 07 мая 2015

Еще яснее!

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