2

我有一个问题,我的 tableView 的背景颜色会覆盖我为单个单元格设置的背景颜色。更具体地说,我有一个包含 3 行的表格:顶部单元格为深灰色,底部 2 个单元格为红色:

http://imgur.com/otYlFMx,LvolDzY,tXiJenw#0

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    UIColor *sectionBackgroundColor = [UIColor colorWithRed:0.09f green:0.09f blue:0.09f alpha:1.0];
    UIColor *menuItemBackgroundColor = [UIColor redColor];

    if (indexPath.row == 0) {
        cell.backgroundColor = sectionBackgroundColor;
        cell.textLabel.textColor = [UIColor whiteColor];
        cell.textLabel.text = @"MENU";
        cell.textLabel.font= [UIFont systemFontOfSize:16.0];
        cell.selectionStyle = false;
    } else if (indexPath.row == 1) {
        cell.backgroundColor = menuItemBackgroundColor;
        cell.textLabel.textColor = [UIColor whiteColor];
        cell.textLabel.text = @"Schedule";
        cell.textLabel.font= [UIFont systemFontOfSize:18.0];
        cell.imageView.image = [UIImage imageNamed:@"Schedule.png"];
    } else if (indexPath.row == 2) {
        cell.backgroundColor = menuItemBackgroundColor;
        cell.textLabel.textColor = [UIColor whiteColor];
        cell.textLabel.text = @"Contacts";
        cell.textLabel.font= [UIFont systemFontOfSize:18.0];
        cell.imageView.image = [UIImage imageNamed:@"Contacts.png"];
    } else {
        cell.backgroundColor = [UIColor blackColor];
        cell.selectionStyle = false;
    }

}

我想要做的是将底部所有那些空的、未使用的白色单元格变为黑色。根据我的研究,设置 tableView 背景颜色将做到这一点:

http://imgur.com/otYlFMx,LvolDzY,tXiJenw#1

tableView.backgroundColor = [UIColor blackColor];

但是,正如您所注意到的,这行代码也将顶部两个单元格的背景颜色更改为黑色。我对此进行了更多尝试,并注意到一个一般模式,其中每个单元格背景颜色都将更改为黑色,除了最后一个:

(见上面链接中的第三张图片)

关于这里发生了什么的任何想法?帮助将不胜感激!



我已经尝试过的一些事情不起作用(我会提供更多链接,但我目前的代表不允许我这样做):

A) 使单元格中的视图不透明。更改单元格中不同视图的颜色。

cell.opaque = YES;
cell.backgroundView.opaque = YES;
cell.contentView.opaque = YES;
cell.backgroundColor = menuItemBackgroundColor;
cell.contentView.backgroundColor = menuItemBackgroundColor;
cell.backgroundView.backgroundColor = menuItemBackgroundColor;

B)将tableView的backgroundView设置为nil。

tableView.backgroundView = nil;

C) 设置tableView的backgroundView的背景颜色。

tableView.backgroundView.backgroundColor = [UIColor blackColor];
4

2 回答 2

4

设置我的 tableView 的背景颜色会覆盖我为我的单个单元格设置的背景颜色

这是正确的。烦人,不是吗?:) 问题实际上只是要么给单元格着色backgroundView(比听起来容易得多),要么等到tableView:willDisplayCell:forRowAtIndexPath:,然后将backgroundColor单元格设置在那里。

于 2013-03-29T22:39:20.200 回答
0

以下解决方法允许您使用情节提要中指定的背景颜色,并避免在代码中设置显式颜色:

  • dequeueReusableCellWithIdentifier:中,虽然故事板的背景颜色仍然完好无损,但将其保存,例如在自定义UITableView子类的属性中。
  • 稍后,在 中,使用您在 中保存的值 willDisplayCell:恢复。backgroundColordequeueReusableCellWithIdentifier:
于 2014-07-19T17:07:39.370 回答