嘿我试着基本上能够将新索引放在字典中的第一个或最后一个。
到目前为止我能够模拟的代码:
// 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
你不能用Dictionary
这样做,因为它没有排序标准,只有你可以为一个键添加元素,这种方式只能在Array