In the iPhone / iPad app, I use UITableView to display a list of items that can be edited. I can successfully alternate the background color of the rows in my table view. However, when I turn on the “edit mode” (i.e. Displays the delete control), each cell appears to be shifted to the right, and the delete control moves to the left.
My problem is that the delete control has a white background color. I would like the background color of the delete control to match the background color of my UITableViewCell.
How to do it?
source
share