gpt4 book ai didi

swift - 字典数组排序

转载 作者:可可西里 更新时间:2023-11-01 01:06:21 24 4
gpt4 key购买 nike

我需要按以下方式对字典数组进行排序。该数组包含具有以下格式的字典:

[{
fecha = "09:54:51";
"nombre_vendedor" = Rafaela;
numero = 501;
precio = 52;
"punto_venta" = Base;
tipo = Gold;
}
{
fecha = "09:54:51";
"nombre_vendedor" = Miguel;
numero = 400;
precio = 40;
"punto_venta" = Base;
tipo = Gold;
}]

我必须按“numero”键排序。

任何人都知道如何做到这一点。我一直在尝试 sortedArrayUsingComparator 方法,但没有得到任何结果。

谢谢。

最佳答案

您可以通过以下方式使用排序方法:

myArray.sort { $0["numero"]! < $1["numero"]! }

关于swift - 字典数组排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28463627/

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