我的应用在不同的屏幕中显示分组的静态UITableView。无论如何使用外观代理
[UITableView appearance]
或
[UITableViewCell appearance]
自定义所选单元格的背景颜色?基本上我需要修改
cell.selectedBackgroundView.backgroundColor
我的应用中的每个单元格,但我找不到在代理对象中设置的正确属性。
BTW我也试过了正常的方法(作为一个组静态表):
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.selectedBackgroundView.backgroundColor = [UIColor yellowColor];
}
但它不起作用。有什么建议吗?
答案 0 :(得分:7)
您需要提供selectedBackgroundView的视图。已经没有人了。尝试:
cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.bounds] ;
cell.selectedBackgroundView.backgroundColor = [UIColor yellowColor] ;
此外,创建单元格时,放置此代码(至少第一行)的更好位置是-tableView:cellForRowAtIndexPath:
。否则,每次显示单元格时,您都将创建一个新的背景视图。