如何填充UITableViewCell的背景色?我尝试了这段代码,但是没有用。

cell.backgroundColor = [UIColor redColor];

最佳答案

尝试为UITableViewCell设置backgroundView:

UIView *bgView = [[UIView alloc] init];
bgView.backgroundColor = [UIColor redColor];
cell.backgroundView = bgView;
// release object
[bgView release];


您可以以相同方式更改UITableViewCell的选择背景视图。

cell.selectedBackgroundView = bgView;

10-08 02:08