iOS 去掉tableViewCell 点击效果 三个简单方法

来源:互联网 发布:q币拦截软件 编辑:程序博客网 时间:2024/05/01 18:00

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

    // 1 松开手选中颜色消失   

   [tableView deselectRowAtIndexPath:indexPath animated:YES];

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    // 2
    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
    // 3点击没有颜色改变
    cell.selected = NO;

}


0 2
原创粉丝点击