我在表格视图上方有UILabel
。我想将标签的背景颜色设置为UITableView
。
我已将UILabel
背景颜色设置如下。
self.label.backgroundColor = [UIColor colorWithWhite:0.5 alpha:0.2];
我已将表格视图背景颜色设置如下。
cell.backgroundColor = [UIColor colorWithWhite:0.5 alpha:0.2];
但是我得到了两种不同的颜色?请告诉我为什么?
答案 0 :(得分:0)
也许你的contentView的tableviewCell的backgroundColor没有设置为clearColor:
cell.contentView.backgroundColor = [UIColor clearColor];