[objective-c] 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)

그리고 내가 시도한 다른 조합을 기억할 수 없습니다.



답변

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


답변

예를 들어, 이것이 어떻게 진행되는지입니다.

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


답변

http://fuckingblocksyntax.com

메소드 매개 변수로서 :

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


답변

다른 예 (이 문제는 여러 가지 이점이 있음) :

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


답변

훨씬 더 분명하다!

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


답변