From UITableViewDataSource Protocol, inside method cellForRowAt add:
let cell = tableView.dequeueReusableCell(withIdentifier: "YOUR_CELL_IDENTIFIER", for: indexPath) cell.selectionStyle = .none return cell OR
You can goto Storyboard > Select Cell > Identity Inspector > Selection and select none from dropdown.