UITableViewCell选中样式

1系统默认的颜色设置

1 //无色

2 cell.selectionStyle=UITableViewCellSelectionStyleNone;

3 //蓝色,也就是系统默认的颜色

4 cell.selectionStyle=UITableViewCellSelectionStyleBlue;

5 //灰色

6 cell.selectionStyle=UITableViewCellSelectionStyleGrap;

2定义UITableViewCell的样式

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

3.隐藏cell的分割线

[chatTableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];

你可能感兴趣的:(UITableViewCell选中样式)