I\'ve got an NSArray and have to iterate over it in a special case backwards, so that I first look at the last element. It\'s for performance reasons: If the la
NSArray
for (int i = ((int)[array count] - 1); i > -1; i--) { NSLog(@"element: %@",array[i]); }