Does enumerateObjectsUsingBlock always always iterates sequentially?

129 Views Asked by At
[array enumerateObjectsUsingBlock:^(NSDictionary *tool, NSUInteger idx, BOOL *stop) {
    NSLog("Idx :: %d",idx);  
}];

Will the log print indexes sequentially starting from 0 ... till end?
If YES, How is it faster than fast enumeration of kind for (obj in array)?

0

There are 0 best solutions below