tableview didse

tableview didselect去除点击效果

有两个:

-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath

{

// UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

// [cell setSelectionStyle:UITableViewCellSelectionStyleNone]; (这种是没有点击后的阴影效果)

UITableViewCell*cell = [tableViewcellForRowAtIndexPath:indexPath];

cell.selected=NO; (这种是点击的时候有效果,返回后效果消失)

tableviewCell中Cell不能被点击


cell.selectionStyle=UITableViewCellSelectionStyleNone;