disable Scroll tableview swift code example
Example 1: how to disable uitableview selection in swift
tableView.allowsSelection = false
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)
}
}