Swift - Reload UITableView Header

swift, swift3, uitableview

Solution

Use this method to reload section. Add index set of section which you want to reload.

tableView.reloadSections(IndexSet(0..<1), with: .automatic)

Problem

I'm try to reload only UITableView section header without reloading whole section or reload whole table. Thanks in advance. note :- I follow answers of already answered question. But I still cannot figure out this.

Original source

Related problems