0

我已将范围对象添加到 NSMutable 数组,即 [{5, 12} {0, 4} {18, 10}]。现在我想按升序对这个 NSMutable 数组进行排序。我正在使用以下代码按递增顺序获取 NSMutable 数组对象。

        NSArray *stringIndexes = [StringIndexes copy];
        stringIndexes = [stringIndexes sortedArrayUsingSelector:@selector(compare:)];
        NSLog(@"stringIndexes..:%@",stringIndexes);

但它没有提供所需的输出。如果有人知道如何对具有范围对象的 NSMutable 数组进行排序。请帮帮我。

谢谢大家。

4

1 回答 1

5

如果要向数组添加范围,请使用

NSValue *value = [NSValue valueWithRange:(NSRange)range];

当你想对数组进行排序时:

[myArray sortUsingComparator:^NSComparisonResult(NSValue *val1, NSValue *val2, BOOL *stop) {
  NSRange range1 = [val1 rangeValue];
  NSRange range2 = [val2 rangeValue];
  // you need to fine tune the test below - not sure what you want
  if(range1.location == range2.location) return NSOrderedSame;
  if(range1.location < range2.location) return NSOrderedAscending;
  if(range1.location > range2.location) return NSOrderedDescending;
  assert(!"Impossible");
  } ];
于 2012-08-13T16:32:22.343 回答