📅  最后修改于: 2022-03-11 15:01:03.799000             🧑  作者: Mango
override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == .delete {
terms.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath], with: .bottom)
}
}
// terms is array var