これが私のNSArray
myArray = [NSArray arrayWithObjects: @"a", @"b", @"c", @"d", @"e", nil];
今、私は次のように配列をループしています:
int size = [myArray count];
NSLog(@"there are %d objects in the myArray", size);
for(int i = 1; i <= size; i++) {
NSString * buttonTitle = [myArray objectAtIndex:i];
// This gives me the order a, b, c, d, e
// but I'm looking to sort the array to get this order
// e,d,c,b,a
// Other operation use the i int value so i-- doesn't fit my needs
}
forループでは、これにより順序がわかります。
a, b, c, d, e
しかし、私はこの順序を取得するために配列をソートしようとしています:
e, d, c, b, a
何かご意見は?
配列も元のソート順に保つ必要があります。