Description of the problem: with iOS 7 in grouped UITableView there is a gap between the top of the table view and the first cell.
The strange part is th
There was a space above the UITableView itself, and also between the cells. Found my solution in 2 different answers above..posting it again so that nobody misses both solutions.
This removed the space from above :
self.automaticallyAdjustsScrollViewInsets = NO;
and this removed the spaces below the cells : Setting the 'Style' attribute of the UITableView to 'Plain'