无法设置tableview背景&标签背景为同一颜色?

时间:2015-11-21 07:24:54

标签: ios objective-c uitableview

我在表格视图上方有UILabel。我想将标签的背景颜色设置为UITableView

我已将UILabel背景颜色设置如下。

 self.label.backgroundColor = [UIColor colorWithWhite:0.5 alpha:0.2];

我已将表格视图背景颜色设置如下。

  cell.backgroundColor = [UIColor colorWithWhite:0.5 alpha:0.2];

但是我得到了两种不同的颜色?请告诉我为什么?

1 个答案:

答案 0 :(得分:0)

也许你的contentView的tableviewCell的backgroundColor没有设置为clearColor:

   cell.contentView.backgroundColor = [UIColor clearColor];