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 should work:
UIView.setAnimationsEnabled(false) tableView.beginUpdates() if let containerView = tableView.footerViewForSection(0) { containerView.textLabel!.text = "New footer text!" containerView.sizeToFit() } tableView.endUpdates() UIView.setAnimationsEnabled(true)