表格视图单元格默认背景颜色 - 设置默认颜色的是什么?

时间:2014-03-04 06:50:08

标签: ios tableview cell

当我加载TableView时,突出显示的单元格的默认单元格背景颜色为浅灰色。 如何以及在何处将其更改为其他颜色?

2 个答案:

答案 0 :(得分:1)

我们可以在这个方法中设置选定的backgroundView

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

使用这些行

UIView *selectionView = [[UIView alloc] init];
selectionView.backgroundColor = [UIColor greenColor];
cell.selectedBackgroundView = selectionView;

答案 1 :(得分:1)

在方法中为单元格设置selectionStyle:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

// Code to initialize your cell
    cell.selectionStyle = UITableViewCellSelectionStyleBlue;
    return cell;

}