Swift 4.x
To Change the selection background Colour to anyColour use Swift Extension
Create UITableView Cell extension as below
extension UITableViewCell{
func removeCellSelectionColour(){
let clearView = UIView()
clearView.backgroundColor = UIColor.clear
UITableViewCell.appearance().selectedBackgroundView = clearView
}
}
Then call removeCellSelectionColour() with cell instance.