I have created a table view and in its header I have set a title which will change at runtime depending on the previous view’s table view click. Now initially while loading the table view header title is not updating with the latest selections, instead once I scroll down or up it updates immediately because I am setting the title in viewForHeaderInSection: method. Is it possible to update the header of section at the initial stage (i.e.. before scrolling.)
TIA
The obvious answer is reload tableview on appropriate callback method. For this problem I think
viewWillAppear:(BOOL)animatedselector is a good point to override. You should add this method to your tableViewController: