UITableView cell 选中变化设置

[tableView deselectRowAtIndexPath:indexPath animated:YES];//选中后的反显颜色即刻消失

//选中后颜色设置---
//无色
cell.selectionStyle = UITableViewCellSelectionStyleNone;

//蓝色
cell.selectionStyle = UITableViewCellSelectionStyleBlue;

//灰色
cell.selectionStyle = UITableViewCellSelectionStyleGray;
[tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; //去掉cell分界线



你可能感兴趣的:(UITableView cell 选中变化设置)