Как я могу вставить и удалить значения в словаре, как это?
var example: [String: [String]]
При редактировании коммитов мне необходимо удалить значение:
if editingStyle == .delete {
if indexPath.row >= 1 {
let key = tableViewData[indexPath.section].dog
let value = tableViewData[indexPath.section].name[indexPath.row - 1]
let sections = IndexSet.init(integer: indexPath.section)
tableView.reloadSections(sections, with: .none)
DataManager.shared.example.removeValue(forKey: key[value])
}
}
Спасибо!