Possible Duplicate:
How can I disable the UITableView 开发者_Go百科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;
精彩评论