I am reloading some cells in my table view. After the reload is done, I want to scroll so that they are visible. I am aware of the scrollToRowAtIndexPath:atScrollPosition: method. But I need to call it after the reload as done, as said reload will change row heights.
Here are some related questions, but they don't quite answer my question.
UITableView , Scroll to bottom on reload?
How to Start UITableView on the Last Cell
EDIT -- My reload does not insert or delete any rows. Rather, I am reloading one or more cells to reflect updated information.