iOS: block参数

先看一下 NSArray 是怎么传递 block 参数的

...
@interface NSArray (NSExtendedArray)
…

#if NS_BLOCKS_AVAILABLE
- (void)enumerateObjectsUsingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block NS_AVAILABLE(10_6, 4_0);

…
@end

 

对于不需要参数的情况,比如只是想在某个方法结束后调用另一方法

//实现
- (void)endInput:(void (^)())completion
{
    [UIView animateWithDuration:0.25 animations:^{

    } completion:^(BOOL finished) {

        if (completion) {
            completion();
        }
    }];
}

//调用
[instance endInput:^{
    //做点什么
}];

 

posted @ 2014-03-24 16:19  有妄想症的猫zz  阅读(14664)  评论(0编辑  收藏  举报