I have a UITableView, it's a grouped one. I need it to be grouped because I have different sections, different headers for each sections, etc, etc but I need to make it look like a plain table, make the cells fit the whole width of the screen, and remove the rounded corners...
I've been googling and stackoverflowing but I couldn't find any answer to this... the most close I got was to set the cells to:
cell.backgroundView = [[UIView alloc] initWithFrame:CGRectZero];
But that's not what I need, because the cells are now transparent but when I select one I can still see in the selection that the shape of the cell is rounded... also I can't change the color of the cell...
Any idea? Thanks!