发布于 2年前
禁止UITableView选中高亮显示
去掉UITableViewCell的Selection style即可
Objective-C
cell.selectionStyle = UITableViewCellSelectionStyleNone;
或者
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
Swift 2
cell.selectionStyle = UITableViewCellSelectionStyle.None
Swift 3
cell.selectionStyle = .none