how to make a tableview to be grouped style without indenting cells
- by Ying
Hi, I want a tableview without floating headers and footers, but in the UITableViewStylePlain style. When I used a grouped style tableview, it draws this rounded rectangle around my cells, and it is annoying!! Is there a setting to turn this off?
I have tried
tableView.backgroundView = nil;
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
tableView.autoresizingMask = UIViewAutoresizingNone;
All don't work. Does anyone have any idea how to do this? Thanks