gpt4 book ai didi

iphone - tableView 中疯狂的数组排序! sortedArrayUsingSelector 帮助?

转载 作者:可可西里 更新时间:2023-11-01 17:11:07 26 4
gpt4 key购买 nike

我的 tableView 应用程序将数据加载到 TableView 中。一切正常,但数组排序有点困惑,如下图所示。我考虑过使用 sortedArrayUsingSelector 来理顺事情,但我不确定应该使用哪种“排序方法”。 You can see, the numbers don't go like 1. 2. 3. 4. 5. etc, but weird...

我如何对其进行排序,以便根据数字对单元格进行排序?就像顺序是 1. 2. 3. 4. 5. 等不是 1. 10. 11. 12. 13. 14. 2. 3. ?

提前致谢!

最佳答案

还有两行:

NSSortDescriptor *descriptor = [NSSortDescriptor sortDescriptorWithKey:nil ascending:YES comparator:^(id obj1, id obj2) { return [obj1 compare:obj2 options:NSNumericSearch]; }];
rowTitleArray = [rowTitleArray sortedArrayUsingDescriptors:[NSArray arrayWithObject:descriptor]];

关于iphone - tableView 中疯狂的数组排序! sortedArrayUsingSelector 帮助?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7084489/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com