-
Notifications
You must be signed in to change notification settings - Fork 76
Open
Description
// 顶级节点排序
self.topItems = [topItems sortedArrayUsingComparator:^NSComparisonResult(MYTreeItem *obj1, MYTreeItem *obj2) {
return [@([obj1.orderNo integerValue]) compare:@([obj2.orderNo integerValue])];
}].mutableCopy;
// 所有 item 排序
for (MYTreeItem *item in self.tmpItems) {
item.childItems = [item.childItems sortedArrayUsingComparator:^NSComparisonResult(MYTreeItem *obj1, MYTreeItem *obj2) {
return [@([obj1.orderNo integerValue]) compare:@([obj2.orderNo integerValue])];
}].mutableCopy;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels