如何自定义TTTableViewCell的背景颜色? (Three20框架)

时间:2011-02-21 15:55:20

标签: iphone uitableview three20 tablecell

我试图自定义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];

但仍无效。有什么想法吗?

编辑:我的错,它正在运作。我正在渲染一些东西,我看不到它。

2 个答案:

答案 0 :(得分:0)

我想你想要这个:

cell.backgroundColor = [UIColor redColor];

答案 1 :(得分:0)

您是否有可能在单元格顶部渲染没有[UIColor clearColor]作为背景颜色的内容?

编辑:刚看到你的编辑......显然......;)