web-dev-qa-db-ja.com

typedefを使用せずにブロックメソッドパラメーターを宣言する

Typedefを使用せずにObjective-Cでメソッドブロックパラメーターを指定することはできますか?それは、関数ポインタのようでなければなりませんが、中間のtypedefを使用せずに、勝つ構文を見つけることはできません。

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

上記のコンパイルのみ、これらはすべて失敗します:

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

試した他の組み合わせを思い出せません。

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

これは、たとえば次のようになります...

[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

メソッドのパラメーターとして:

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

別の例(この問題は複数の恩恵を受けます):

@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

さらに明確に!

[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