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 last one just makes no sense, all previous ones can be ignored. So I'd like to break the loop. But that won't work if I iterate forward from 0 to n. I need to go from n to 0. Maybe there is a method or function I don't know about, so I wouldn't have to re-invent the wheel here.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To add on the other answers, you can use
Source with some more info: http://cocoawithlove.com/2008/05/fast-enumeration-clarifications.html |
|||||
|
|
From here:
|
|||
|
|
|
Since this is for performace, you have a number of options and would be well advised to try them all to see which works best.
More extreme methods (if performance is super-critical)
There may be others. In which case, anyone feel free to add it. |
||||
|
|