目前我的tableview看起来像这样:如你所见,cell.textLabel和cell.detailTextLable都加载了这个背景,我无法弄清楚如何让它们停止加载背景,以及因为它只是细胞的支持。
这是我目前更改单元格的代码:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
[cell setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"tableCell.png"]]];
}
我怎样才能解决这个问题? 提前谢谢。
答案 0 :(得分:1)
你试过[[cell contentView] setBackgroundColor:blabla];
吗?