我有一个NSMutableArray
包含NSIndexPath
对象的对象,我想按它们row
的升序对它们进行排序。
最短/最简单的方法是什么?
这是我尝试过的:
[self.selectedIndexPaths sortUsingComparator:^NSComparisonResult(id obj1, id obj2) {
NSIndexPath *indexPath1 = obj1;
NSIndexPath *indexPath2 = obj2;
return [@(indexPath1.section) compare:@(indexPath2.section)];
}];