tableview didse
更新:HHH   时间:2023-1-7


tableview didse

tableview didselect去除点击效果 

有两个:

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

{

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

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

    

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];  

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

 

tableviewCell中Cell不能被点击


cell.
selectionStyle = UITableViewCellSelectionStyleNone;



返回开发技术教程...