I have an multidimensional NSMutableArray and I want to sort it on one of the objects. The array is created so:
[NSMutableArrayName addObjectsFromArray:[NSMutableArray arrayWithObjects:[NSMutableArray arrayWithObjects:name,[NSNumber numberWithInteger:x],nil],nil]];
I can't find a way to sort the entire array using the value of the second object (the integer x).
Help appreciated as always.