how to make a tableview to be grouped style without indenting cells
Posted
by
Ying
on Stack Overflow
See other posts from Stack Overflow
or by Ying
Published on 2010-12-22T20:48:47Z
Indexed on
2010/12/22
21:53 UTC
Read the original article
Hit count: 231
uitableview
|ios
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
© Stack Overflow or respective owner