如何更新字典中特定索引的键和值?

时间:2019-05-17 07:46:40

标签: swift dictionary

获取源索引的详细信息并通过存储将其删除

但是如何在目的地或目的地索引处添加存储的数据?

Am使用字典键和值在自定义单元格/行中显示数据

这里正在尝试将表格视图中的单元格从源移动到目标。

获取源索引的详细信息并删除是可以的,但是如何在目标位置或目标索引处添加相同的数据?

这是我的代码:

let indexSource = dic1.index(forKey: (Array(dic1.keys)[sourceIndexPath.row]))

let rearrangedDataDic = dic1[indexSource!]

dic1.remove(at: indexSource!)

let indexDest = dic1.index(forKey: (Array(dic1.keys)[destinationIndexPath.row]))

dic1.updateValue(rearrangedDataDic.value, forKey: rearrangedDataDic.key)

0 个答案:

没有答案