How to make cells in UITableView not turn blue?
When you're generating the UITableViewCell (within the UITableView's - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
method call), simply set the selectionStyle
property to UITableViewCellSelectionStyleNone
.
Set the UITableViewCell Class Reference for more information.
Use the UITabelViewCell selectionStyle
property.
myCell.selectionStyle = UITableViewCellSelectionStyleNone;
By default, the selectionStyle
property of cell is UITableViewCellSelectionStyleBlue
. Change it to UITableViewCellSelectionStyleNone
.