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
This is how you do it in Swift 3.0
tableView.beginUpdates() tableView.headerView(forSection: indexPath.section)?.textLabel?.text = "Some text" tableView.endUpdates()