swipe to delete xcode
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