Hapus Kunci dengan Kamus Indeks Swift
//Get Key
let item = Array(myDict)[indexPath.row]
//Remove Key
myDict.removeValue(forKey: item.key)
Inquisitive Impala
//Get Key
let item = Array(myDict)[indexPath.row]
//Remove Key
myDict.removeValue(forKey: item.key)