📜  滑动删除 xcode - Swift 代码示例

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

代码示例1
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