选择时,我更改了 UITableViewCell 的背景颜色:
UIView *selectedBackgroundColor = [[UIView alloc] init];
[selectedBackgroundColor setBackgroundColor:[UIColor colorWithRed:240/255.0 green:240/255.0 blue:240/255.0 alpha:1]];
[cell setSelectedBackgroundView:selectedBackgroundColor];
但它仍然将 UITableViewCell 标签的颜色更改为白色,这是我不想要的。我可以默认阻止它这样做吗?