我有一个带有表格视图的视图,以编程方式创建(没有关联的 XIB)。我希望某些单元格具有浅灰色背景色。所以我尝试了这个:
cell.contentView.backgroundColor = [UIColor colorWithRed:(230/255.f) green:(230/255.f) blue:(230/255.f) alpha:1.0];
但是结果如下(问题当然是单元格的背景应该是完全灰色的):
我也试过这个,结果和以前一样:
UIView *cell_view = [[UIView alloc] init];
[cell_view setBackgroundColor:[UIColor colorWithRed:(230/255.f) green:(230/255.f) blue:(230/255.f) alpha:1.0]];
[cell setBackgroundView:cell_view];
似乎没有任何效果。谢谢你的帮助。