will a fast enumeration of an array always go in index order?
for (NSDictionary *zone in myArray)
{
//do code
}
will that always enumerate from index location 0, 1, 2, …, n?
i prefer fast enumeration over a standard for loop since it makes the code easier to read.
Yes it will:
docs here