设置UITableViewCell的选中高亮颜色

设置UITableViewCell的选中高亮颜色

cell.selectionStyle

 

//无色
cell.selectionStyle = UITableViewCellSelectionStyleNone;


//蓝色
cell.selectionStyle = UITableViewCellSelectionStyleBlue;


//灰色
cell.selectionStyle = UITableViewCellSelectionStyleGray;

你可能感兴趣的:(UITableViewCell)