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
Try this code?
NSArray *array = /* loaded from file */; array = [array sortedArrayUsingSelector: @selector(compare:)];