Remove the cell highlight color of UITableView
In the Storyboard
or XIB
Attributes Inspector, set Selection
to None
.
In Swift:
cell.selectionStyle = UITableViewCell.SelectionStyle.none
or simply:
cell.selectionStyle = .none
In the Storyboard
or XIB
Attributes Inspector, set Selection
to None
.
In Swift:
cell.selectionStyle = UITableViewCell.SelectionStyle.none
or simply:
cell.selectionStyle = .none