Here is a quick fix to get rid of gray background color on grouped style UITableView.
if ([tableView respondsToSelector:@selector(backgroundView)]){
tableView.backgroundView = nil;
[tableView setBackgroundColor:[UIColor clearColor]];
}
if ([tableView respondsToSelector:@selector(backgroundView)]){
tableView.backgroundView = nil;
[tableView setBackgroundColor:[UIColor clearColor]];
}