I'm using a UITableView with group style. I made some specific changes and the normal view of the cell no longer has the rounded corners on grouping. I would like to remove this and just use the plain style of selection. I tried setting selectedBackgroundView
to nil
for the cell returned by -(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath
, but it doesn't change anything. Is there something else I must set to get this behavior?
As a side note, I do have to use group style and I know its weird that I basically want it to act like a plain style table on selection, but there are certain behaviors inherent to group style tables that I wanted, just not the look.