UITableViewCell不会改变第一个单元格的背景颜色

时间:2014-06-16 19:21:34

标签: ios objective-c ipad uitableview

我正在尝试更改UITableView中所有单元格的背景颜色以清除颜色,但我无法更改第一个单元格。第一个细胞保持白色。我的故事板中没有其他观点导致这种情况。

我尝试了这个但它仍然无法正常工作

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    cell.backgroundColor = [UIColor clearColor];
    cell.contentView.backgroundColor = [UIColor clearColor];
    cell.textLabel.backgroundColor = [UIColor clearColor];
    cell.detailTextLabel.backgroundColor = [UIColor clearColor];
    cell.layer.backgroundColor = [UIColor clearColor].CGColor;
}

如果您想亲自查看问题,我可以通过电子邮件发送给您。获得代码后,只需运行模拟并点击我创建的“运行客户端”按钮。

0 个答案:

没有答案