静态 UITableViewCell 背景颜色在 iPad 上总是白色

Posted

技术标签:

【中文标题】静态 UITableViewCell 背景颜色在 iPad 上总是白色【英文标题】:Static UITableViewCell backgroundColor always white on iPad 【发布时间】:2015-07-11 19:53:27 【问题描述】:

在我的项目中,我有一个静态 TableView。我在界面生成器中更改了单元格的背景颜色。这在 iPhone 上正确显示。

但是,在 iPad 上,单元格背景始终为白色。

我找到了动态单元格here 的解决方案,但由于它使用 UITableViewDataSource 协议,我无法将它与我的静态表一起使用。

我该如何解决这个问题?

【问题讨论】:

尝试设置cell.contentView.backgroundColor 【参考方案1】:

您应该设置cell.contentView.backgroundColor,正如@SandeepAggarwal 所指出的那样。

【讨论】:

这对我来说很明显。但是您正确回答了我的问题,所以我会接受答案。我真正的问题是,如何访问静态 UITableViewCells。 This 为我指明了正确的方向。【参考方案2】:
- (void)tableView:(UITableView *)tableView
  willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath

  [cell setBackgroundColor:[UIColor clearColor]];

试试这个,它会解决你的问题

【讨论】:

以上是关于静态 UITableViewCell 背景颜色在 iPad 上总是白色的主要内容,如果未能解决你的问题,请参考以下文章

UITableViewCell 背景颜色仅适用于预设颜色方法

请问如何自定义UITableViewCell的背景颜色

在uitableviewcell背景颜色上快速更改标签

在分组的 UITableViewCell 中指定背景颜色

点击时 UItableviewcell 背景颜色

突出显示/选择时的 UITableViewCell 背景颜色