我知道如何从UITableViewCell中删除​​选择颜色

cell.selectionStyle = UITableViewCellSelectionStyleNone

但是它禁用了视图中所有“按印刷中”的响应...有什么方法可以仅去除选择颜色?

最好的祝福,

最佳答案

我根据Pratik评论获得了答案。使用此代码仅删除选择颜色。

cell.selectedBackgroundView = [[UIView alloc] init];

10-08 05:51