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.
UITableView
The strange part is th
guys! I had the same problem. TableView appeared with free space between nav bar and first cell. This code saved me:
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { if (section == 0) { return 10; } else return 2; }