TableView背景图像越过单元格textLabel

时间:2012-03-18 17:54:28

标签: objective-c ios uitableview

目前我的tableview看起来像这样:this is my current view如你所见,cell.textLabel和cell.detailTextLable都加载了这个背景,我无法弄清楚如何让它们停止加载背景,以及因为它只是细胞的支持。

这是我目前更改单元格的代码:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    [cell setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"tableCell.png"]]];
}

我怎样才能解决这个问题? 提前谢谢。

1 个答案:

答案 0 :(得分:1)

你试过[[cell contentView] setBackgroundColor:blabla];吗?