tableView.allowsSelection = NO;//禁止cell选中
cell.userInteractionEnabled = NO;//这个设置后cell不可点击,cell里边的控件不可点击。
cell.contentView.userInteractionEnabled =NO;//这个设置后cell可以点击,但cell里边的控件不可点击。
cell.selectionStyle = UITableViewCellSelectionStyleNone; //这个设置后cell可以点击,点击后没有颜色
设置cell的选中后背景颜色
cell.selectedBackgroundView= [[UIViewalloc]initWithFrame:cell.frame];
cell.selectedBackgroundView.backgroundColor= [UIColorredColor];
网友评论