0

我的应用程序在不同的屏幕中显示分组的静态 UITableView。无论如何使用外观代理

[UITableView appearance]

或者

[UITableViewCell appearance]

自定义选定单元格的背景颜色?基本上我需要修改

cell.selectedBackgroundView.backgroundColor

对于我的应用程序中的每个单元格,但我找不到要在代理对象中设置的正确属性。

顺便说一句,我也尝试过正常的方法(作为一个组静态表):

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

    cell.selectedBackgroundView.backgroundColor = [UIColor yellowColor];

}

但它不起作用。有什么建议吗?

4

1 回答 1

7

您需要为 selectedBackgroundView 提供一个视图。那里已经没有了。尝试:

cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.bounds] ;
cell.selectedBackgroundView.backgroundColor = [UIColor yellowColor] ;

此外,放置此代码(至少第一行)的更好位置是在-tableView:cellForRowAtIndexPath:创建单元格时。否则,每次显示单元格时,您都将创建一个新的背景视图。

于 2012-10-11T18:01:53.607 回答