0

在我的 tableView 单元格中,我的文本上有一个背景色,我不知道如何删除它。有人可以帮我吗?

在此处输入图像描述

我试过了

cell.backgroundColor = [UIColor clearColor];
cell.opaque = NO;

但不工作

4

1 回答 1

1

你有没有尝试过:

cell.textLabel.backgroundColor = [UIColor clearColor];
cell.textLabel.opaque = NO;

和:

cell.detailTextLabel.backgroundColor = [UIColor clearColor];
cell.detailTextLabel.opaque = NO;
于 2013-01-07T16:22:53.600 回答