第32月第12天 block stop

Posted javastart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第32月第12天 block stop相关的知识,希望对你有一定的参考价值。

1.

- (NSMutableArray *)filterUsingBlock:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))block
{
    if (!block) {
        return [self mutableCopy];
    }
    
    NSMutableArray *result = [NSMutableArray array];
    NSUInteger idx = 0;
    BOOL stop = NO;
    
    for (id obj in self) {
        if (block(obj, idx, &stop)) {
            [result addObject:obj];
            
            if (stop) {
                break;
            }
        }
        
        idx++;
    }
    
    return result;
}

 

以上是关于第32月第12天 block stop的主要内容,如果未能解决你的问题,请参考以下文章

第25月第26天 dispatch_group

第35月第18天 bmp对齐

第12月第25天 ImagePickerSheetController

第8月第12天 python json.dumps

第12月第2天 uiscrollview _adjustContentOffsetIfNecessary

第3月第16天 fd_set 32 ACE_TP_Reactor