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?
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?
 
    
     
    
    Set the selectionStyle property:
cell.selectionStyle = UITableViewCellSelectionStyleNone;
