Is there any way to reload the section header/footer of a table view without calling [tableView reloadData];?
[tableView reloadData];
In fact, I want to show the number of cel
You can also do it this way
override func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? { switch section { case 0: return "Some string" default: return "" } }