KА
Size: a a a
DD
fb
DD
DD
DD
DD
DD
KА
extension TableViewController: HeaderDelegate {
func open(section: Int) {
viewModel.changeStatus(at: section)
tableView.beginUpdates()
for row in 0..<viewModel.countRows(at: section) {
tableView.reloadRows(at: [IndexPath(row: row, section: section)], with: .automatic)
}
tableView.endUpdates()
}
}
DD