📜  通过索引字典快速删除键代码示例

📅  最后修改于: 2022-03-11 15:01:00.799000             🧑  作者: Mango

代码示例1
//Get Key
let item = Array(myDict)[indexPath.row]

//Remove Key
myDict.removeValue(forKey: item.key)