当我加载TableView时,突出显示的单元格的默认单元格背景颜色为浅灰色。 如何以及在何处将其更改为其他颜色?
答案 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;
}