I have subclassed the UITableView control, and the style is grouped, but I do not need the cell separators. I tried setting my table view's separatorStyle to none, but it doesn't work. Can any one help me out?
|
feedback
|
|
In a grouped table view, setting
| |||||||||||||
feedback
|
|
Use tableView.separatorStyle = UITableViewCellSeparatorStyleNone; | |||||||||
feedback
|
|
How about setSeparatorColor to your cell's background color? | |||||||||||
feedback
|
|
This did the trick for me:
| |||||
feedback
|
|
It appears that (a) the thinnest you can get s inline separators and (b) you can't change the style after you create the UITableView. From the docs: Table View Style The style of the table view.
Constants UITableViewStylePlain A plain table view. Any section headers or footers are displayed as inline separators and float when the table view is scrolled. Available in iPhone OS 2.0 and later. Declared in UITableView.h UITableViewStyleGrouped A table view whose sections present distinct groups of rows. The section headers and footers do not float. Available in iPhone OS 2.0 and later. Declared in UITableView.h Discussion You set the table style when you initialize the table view (see initWithFrame:style:). You cannot modify the style thereafter. | |||
|
feedback
|