如何在特定的索引swift中将元素追加到字典中

问题描述 投票:0回答:1

嘿我试着基本上能够将新索引放在字典中的第一个或最后一个。

到目前为止我能够模拟的代码:

 // no success

 var updatedList = [String: AnyObject]()

 updatedList.updateValue(child as AnyObject, forKey: "0")

 or 

 updatedList[child]


 to simply get child in array, I'm trying to figure out how to put it last or first in the dictionary 
swift
1个回答
2
投票

你不能用Dictionary这样做,因为它没有排序标准,只有你可以为一个键添加元素,这种方式只能在Array

© www.soinside.com 2019 - 2024. All rights reserved.