3

Possible Duplicate:
How can I disable the UITableView selection highlighting?

I am programatically making the way my cell look.

When I click on the cell however, the table is highlighted. How do I disable this?

Community
  • 1
  • 1
SuperString
  • 21,593
  • 37
  • 91
  • 122

1 Answers1

4

Set the selectionStyle property:

cell.selectionStyle = UITableViewCellSelectionStyleNone;
albertamg
  • 28,492
  • 6
  • 64
  • 71