D
Size: a a a
SS
G
SS
A
d
YV
US
A
SK
func tableView(
_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCell.EditingStyle {
return .delete
}
override
func tableView(
_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
print(indexPath)
tableView.deleteRows(at: [indexPath], with: .right)
}
SK
ВР
IA
A
IA
IA