swift ios tableview remoce item code example
Example 1: 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)
}
}
Example 2: swift remove tableview cell
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == .delete {
print("Deleted")
self.catNames.remove(at: indexPath.row)
self.tableView.deleteRows(at: [indexPath], with: .automatic)
}
}