在创建Cell时添加:
cell.selectionStyle = UITableViewCellSelectionStyleNone;
2.方法,但是点击时会有自带的灰色背景
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}
cell 子控件颜色消失解决方法
https://www.cnblogs.com/HFEL/p/9055246.html