我试图自定义TTTableViewCell的背景颜色但没有成功。
我的TableViewController中有以下方法,当用户点击一个单元格时会执行该方法:
- (void)didSelectObject:(id)object atIndexPath:(NSIndexPath*)indexPath {
TTTableViewCell* cell = (TTTableViewCell*) [self.tableView cellForRowAtIndexPath:indexPath];
cell.contentView.backgroundColor = [UIColor redColor];}
我也试过这个
cell.backgroundColor = [UIColor redColor];
但仍无效。有什么想法吗?
编辑:我的错,它正在运作。我正在渲染一些东西,我看不到它。
答案 0 :(得分:0)
我想你想要这个:
cell.backgroundColor = [UIColor redColor];
答案 1 :(得分:0)
您是否有可能在单元格顶部渲染没有[UIColor clearColor]
作为背景颜色的内容?