tableview取消选中状态
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//可以写其他代码,如给cell赋值。。。
}
tableview取消高亮状态
cell.selectionStyle = UITableViewCellSelectionStyleNone;
用户点击的时候没有突出显示,cell已经点击,但没有特别的效果