In my UITableView, I have a tableHeaderView that should resize itself according to the content. The resizing works fine, however, the tableHeaderView obscures the first couple o
Try setting the tableHeaderView property of the UITableView after you resized your content.
[self.tableView setTableHeaderView:self.myResizedTableHeaderView];
Solved the problem for me. Hope it helps.