TableView单元格颜色

时间:2010-08-16 17:09:55

标签: ios iphone uitableview custom-view

我现在遇到了个问题,如何使uitableview cell 的背景色填满整个cell ,以下是我的代码。但它不能正常工作、、、

图片显示:

http://www.flickr.com/photos/53054715@N05/4898445104/

如何编码在单元格视图中设置颜色填充?

我的代码如下,但效果不佳。

cell.contentView.backgroundColor =[UIColor groupTableViewBackgroundColor];
cell.backgroundColor=[UIColor groupTableViewBackgroundColor];
cell.backgroundView.backgroundColor =[UIColor groupTableViewBackgroundColor];
cell.textLabel.backgroundColor = [UIColor groupTableViewBackgroundColor];
cell.detailTextLabel.backgroundColor = [UIColor groupTableViewBackgroundColor];

1 个答案:

答案 0 :(得分:0)

它有效!

  • (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { [tableView setBackgroundColor:[UIColor groupTableViewBackgroundColor]]; 返回1; }