Search code examples
iosuitableviewcustom-controls

Change color of inset area in UITableView separator


I have a customized UITableView, the cells have a different background color (set in a custom backgroundView). However, the background color is only applied within the cell, but not extended to the inset area of the separator. As you can see in the screenshot, there is a white area to the left of the colored separator.

How can we change the color of this white line? We would like to make the line "disappear" by setting it to the same color as the cell background. Thanks!

enter image description here


Solution

  • Setting the cell's background colour to the same as the contentView's background colour seems to give the best results.

    cell.backgroundColor = cell.contentView.backgroundColor;
    

    That will handle cases where the accessoryView is the wrong colour as well.