2015-06-16 47 views

回答

0

是的,就像前幾天一樣,但是它在發佈的pod規範中還沒有提供。那麼,這不是forEachWithIndex,而是mapWithIndex

下面是一個例子:

NSArray<NSString *> *myArray = @[@"zero", @"one", @"two", @"three"]; 

Underscore.array(myArray).mapWithIndex(^(id obj, NSUInteger idx) { 
    return [NSString stringWithFormat:@"%lu:%@", idx, obj]; 
}); 

Underscore.arrayMapWithIndex(myArray, ^(id obj, NSUInteger idx) { 
    return [NSString stringWithFormat:@"%lu:%@", idx, obj]; 
}); 
相關問題