views:

88

answers:

1

I have a cell that I am inserting to the top of a UITableView. How can I make sure that when the user clicks on the cell, it doesn't show the blue selected indicator?

+2  A: 

Set the selection style of the UITableViewCell to UITableViewCellSelectionStyleNone

John Wang