I can\'t piece together how to do this.
I fetch my array from a plist, this array is full of numbers (as set in the plist). Now al I need to do is sort them so they are
The following will sort the numbers in ascending order and then reverse the result to give the numbers in descending order:
NSArray *sorted = [[[array sortedArrayUsingSelector:@selector(compare:)] reverseObjectEnumerator] allObjects];
This previous question has some other alternatives: Sort an NSArray in Descending Order