【发布时间】:2012-12-21 09:47:56
【问题描述】:
在我的 tableView 单元格中,我的文本上有一个背景色,我不知道如何删除它。有人可以帮我吗?
我试过了
cell.backgroundColor = [UIColor clearColor];
cell.opaque = NO;
但不工作
【问题讨论】:
标签: text ios6 tableview cell background-color
在我的 tableView 单元格中,我的文本上有一个背景色,我不知道如何删除它。有人可以帮我吗?
我试过了
cell.backgroundColor = [UIColor clearColor];
cell.opaque = NO;
但不工作
【问题讨论】:
标签: text ios6 tableview cell background-color
你试过了吗:
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.textLabel.opaque = NO;
和:
cell.detailTextLabel.backgroundColor = [UIColor clearColor];
cell.detailTextLabel.opaque = NO;
【讨论】: