gpt4 book ai didi

ios - 在 Swift3 iOS 中使用字符串参数对对象数组进行排序

转载 作者:行者123 更新时间:2023-11-28 20:56:32 26 4
gpt4 key购买 nike

我必须使用一个参数对一组对象进行排序。我创建了一个实体,下面是我的 JSON:

{
"Name": "Amit",
"Progress": "38",
"Color": "red",
},
{
"Name": "Sonu",
"Progress": "70",
"Color": "green",
}

下面是我的实体类:

class Scoreboard {

// MARK: - Properties
var scoreboardName: String? = ""
var scoreboardProgress: String? = "0"
var scoreboardColor: String? = ""
}

我已将此 JSON 数据传递到表中,问题是如何根据“进度”进行排序?

我试过下面的代码:

scoreboardArray = scoreboardArray.sorted(by: {($0.scoreboardProgress() < $1.scoreboardProgress())})

但它不起作用。请任何人建议我。

最佳答案

你能试试吗

scoreboardArray = scoreboardArray.sorted {
Int($0.scoreboardProgress!)! < Int($1.scoreboardProgress!)!
}

另外,如果您分配默认值,最好删除 ?

不相关但为什么不使用Decodable

class Scoreboard : Decodable {

关于ios - 在 Swift3 iOS 中使用字符串参数对对象数组进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51713470/

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