如何在swift 3中按顺序将数组编号放入字典?

时间:2018-06-09 06:07:59

标签: ios swift3

这里我尝试了以下代码,但没有得到必需的输出我需要将数组显示为字典以获得所需的输出["0.0": "50.0", "50.0": "100.0", "100.0": "150.0"][0.0, 50.0, 100.0, 150.0] self.filteredPriceArr中的任何人都可以帮助我如何按要求实现这个?

       for (index,item) in self.filteredPriceArr.enumerated() {
            print(index)
            print(self.filteredPriceArr.count)
            if index + 1 != priceArray.count {
                priceDict.updateValue("\(self.filteredPriceArr[index + 1])", forKey: "\(self.filteredPriceArr[index])")
            }
            print(priceDict)
        }

1 个答案:

答案 0 :(得分:0)

我已经放了你的代码而且只有一个错误

priceArray应为filteredPriceArr

var filteredPriceArr = [0.0, 50.0, 100.0, 150.0]

var priceDict:[String:String] = [:]

for (index,item) in filteredPriceArr.enumerated() {
    print(index)
    print(filteredPriceArr.count)
    if index + 1 != filteredPriceArr.count {
        priceDict.updateValue("\(filteredPriceArr[index + 1])", forKey: "\(filteredPriceArr[index])")
    }
}

print(priceDict)

这是输出

  

[" 0.0":" 50.0"," 100.0":" 150.0"," 50.0& #34;:" 100.0"]

如您所提及的

,您无法按照下单进行操作

[" 0.0":" 50.0"," 50.0":" 100.0",&#34 ; 100.0":" 150.0"]

字典无法排序!!