在我的UITableView中:我的单元格为黄色,但重新排序图标为白色:(
有什么快速解决方法吗?最好不必将UITableView或黑客继承为子类。
顺便说一下,这种绝望的尝试没有效果:cell.backgroundColor =
cell.backgroundView.backgroundColor =
cell.contentView.backgroundColor = [UIColor myNiceYellowColor];
谢谢!
答案 0 :(得分:0)
请勿使用 - cell.contentView.backgroundColor = [UIColor myNiceYellowColor];
而是更改数据源方法-tableView:willDisplayCell: forRowAtIndexPath:
中的完整单元格颜色。