Skip to main content
2 of 2
Improved syntax
José
  • 3.2k
  • 1
  • 34
  • 45

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.