NSMutableArray
オブジェクトを含むがあり、それらを で昇順NSIndexPath
にソートしたいと考えています。row
それを行うための最短/最も簡単な方法は何ですか?
これは私が試したことです:
[self.selectedIndexPaths sortUsingComparator:^NSComparisonResult(id obj1, id obj2) {
NSIndexPath *indexPath1 = obj1;
NSIndexPath *indexPath2 = obj2;
return [@(indexPath1.section) compare:@(indexPath2.section)];
}];