我的应用程序在不同的屏幕中显示分组的静态 UITableView。无论如何使用外观代理
[UITableView appearance]
或者
[UITableViewCell appearance]
自定义选定单元格的背景颜色?基本上我需要修改
cell.selectedBackgroundView.backgroundColor
对于我的应用程序中的每个单元格,但我找不到要在代理对象中设置的正确属性。
顺便说一句,我也尝试过正常的方法(作为一个组静态表):
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.selectedBackgroundView.backgroundColor = [UIColor yellowColor];
}
但它不起作用。有什么建议吗?