这是我的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
有什么想法吗?
我还需要保持数组的原始排序顺序。
答案 0 :(得分:8)
尝试在数组上调用reverseObjectEnumerator
并使用for-in循环遍历对象:
NSArray *myArray = [NSArray arrayWithObjects:@"a", @"b", @"c", nil];
// Interate through array backwards:
for (NSString *buttonTitle in [myArray reverseObjectEnumerator]) {
NSLog(@"%@", buttonTitle);
}
这将输出:
c
b
a
或者,如果您想通过索引遍历数组或使用其他内容执行其他操作,则可以将数组反转到位:
NSArray *reversedArray = [[myArray reverseObjectEnumerator] allObjects];
答案 1 :(得分:1)
那或改变你的循环
for(int i = size; i >= 1; i--)