在UITableView中更改重新排序图标的背景颜色

时间:2012-06-28 11:32:35

标签: objective-c uitableview

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

yellow row with white reorder icon

有什么快速解决方法吗?最好不必将UITableView或黑客继承为子类。

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

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

谢谢!

1 个答案:

答案 0 :(得分:0)

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