Is that possible that while using grouped view in UItableview and singleline selected and setting the number of the groups to “1”, I want to show the nice rounded border lines around the whole table but not show the separator lines between rows, or show some of the separator lines between rows in the table.
How do I do that?
UITableViewhas an attribute calledseparatorStyle, and one possible value isUITableViewCellSeparatorStyleNone, which should do exactly what you want. Another option is to set theseparatorColorto[UIColor colorWithwhite:1.0f alpha:0.0f](i.e. transparent). Check out theUITableViewdocs at developer.apple.com.