Grouped table views seem to have extra padding on the bottom in iOS 6 (iOS 5 does not have it), but I can\'t find any documentation that suggests this is correct / expected
You can use contentInset to compensate the 20px extra bottom margin:
contentInset
tableView.contentInset = UIEdgeInsetsMake(0, 0, -20, 0);