How to simply list contents entriesin reverse order?
for (RSSEntry *entry in [entries reverseObjectEnumerator]) {
...
}
If you just want to take an array and create a return array, you can do this:
NSArray *reversedEntries = [[entries reverseObjectEnumerator] allObjects];