1、若用方法:

//-(BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath{

//    return NO;

//}

会导致,tableview都不能相应cell的点击事件了

2、tableview选择的时候不要cell的高亮显示样式-LMLPHP

设置cell的选中样式:

Cell.selectionStyle = UITableViewCellSelectionStyleNone;

即可。

04-25 00:06