How to customize tableView separator in iPhone

Sagar R. Kothari picture Sagar R. Kothari · Sep 3, 2009 · Viewed 99k times · Source

By default there is a single line separator in uitableview.

But I want to put my customized line as a separator.

Is it possible? How?

Answer

Daniel Richardson picture Daniel Richardson · Sep 3, 2009

If you want to do more than change the color of the separator using the separatorColor property of the UITableView then you could set the separatorStyle property to UITableViewCellSeparatorStyleNone and then either:

  • create custom UITableViewCells that include your custom seperator within them
  • create alternate [UITableViewCell][6]s that include your custom separator

For example, if your table currently displays 5 rows you could update it to display 9 rows and the rows at index 1, 3, 5, 7 would be separator cells.