UITableView 背景颜色 iPad 设备不起作用

Posted

技术标签:

【中文标题】UITableView 背景颜色 iPad 设备不起作用【英文标题】:UITableView background color iPad device does not work 【发布时间】:2014-06-01 17:58:31 【问题描述】:

以下在模拟器中有效,但在设备上无效。

这适用于“ViewDidLoad”:

self.tableView.backgroundColor = [UIColor redColor];

这在“ViewDidLoad”中不起作用:

self.tableView.backgroundColor = [UIColor colorWithRed:0.24 green:0.2 blue: 0.18 alpha:0];

XCODE5,部署目标:6.1

我真的很感激这里的一些帮助。

【问题讨论】:

【参考方案1】:

是的,因为您将 alpha 设置为 0。

self.tableView.backgroundColor = [UIColor colorWithRed:0.24 green:0.2 blue: 0.18 alpha:0];

将其更改为 0 以外的其他值。

【讨论】:

@Unhelig 非常感谢,我一直在看那段代码几个小时没有看到:-)

以上是关于UITableView 背景颜色 iPad 设备不起作用的主要内容,如果未能解决你的问题,请参考以下文章

从笔尖加载的 UITableView 单元格不显示背景颜色

UITableView 标题背景颜色

分组 UITableView 自定义绘制单元格,而不更改背景颜色?

单击/触摸事件的背景颜色更改在触摸设备上不起作用

UITableView 背景图片

分组 UITableView 的背景颜色在 iOS7 中不会透明