gpt4 book ai didi

swift 2.0 : sort instead of sorted function

转载 作者:行者123 更新时间:2023-11-28 06:58:24 24 4
gpt4 key购买 nike

我有(swift 1)这行代码:

keys = sorted(namesDict!.allKeys as! [String])

但是不再支持函数 sorted (Swift 2.0)。我可以写什么来对键进行排序?

谢谢!

最佳答案

我认为您已经回答了自己的问题。 sort 函数返回排序后的数组,您可以将其存储在变量中。

let dict = ["b":1, "a":2, "c":3]
let sortedKeys = dict.keys.sort() //returns ["a", "b", "c"]

关于 swift 2.0 : sort instead of sorted function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32710784/

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