0

在我的 UITableView 中:我的单元格是黄色的,但重新排序图标是白色的 :(

带有白色重新排序图标的黄色行

有什么快速解决方法吗?最好不必继承 UITableView 或黑客太多。

顺便说一句,这种绝望的尝试没有效果:

cell.backgroundColor =
   cell.backgroundView.backgroundColor =
   cell.contentView.backgroundColor = [UIColor myNiceYellowColor];

谢谢!

4

1 回答 1

0

不要使用 -cell.contentView.backgroundColor = [UIColor myNiceYellowColor];而是更改数据源方法中的完整单元格颜色-tableView:willDisplayCell: forRowAtIndexPath:

于 2012-06-28T11:37:03.783 回答