UITableViewCell的选中时的颜色修改

---系统默认的颜色设置 : 

//无色  cell.selectionStyle = UITableViewCellSelectionStyleNone; 

  //蓝色  cell.selectionStyle = UITableViewCellSelectionStyleBlue; 

  //灰色  cell.selectionStyle = UITableViewCellSelectionStyleGray;

--自定义:

cell.selectedBackgroundView.backgroundColor = [UIColor xxxxxx];

你可能感兴趣的:(UITableViewCell的选中时的颜色修改)