美文网首页
去掉tableview后面多余的虚线

去掉tableview后面多余的虚线

作者: novice_Qin | 来源:发表于2019-10-30 11:18 被阅读0次

    清楚tableview多余的横线,cell点击没效果

     self.tableV.tableFooterView =[[UIView alloc]initWithFrame:CGRectMake(0,0,0,CGFLOAT_MIN)];//CGFLOAT_MIN为无限接近0的浮点数

    方法1:

    selection设置为None,默认是Default

    方法2:

    UITableViewCell *cell;

    ......

    ......

    cell.selectionStyle = UITableViewCellSelectionStyleNone;

    点击有效果,cell没有颜色

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

    {

        [tableView deselectRowAtIndexPath:indexPath animated:NO];

    }

    在cell的点击方法中加上[tableView deselectRowAtIndexPath:indexPath animated:NO];

    相关文章

      网友评论

          本文标题:去掉tableview后面多余的虚线

          本文链接:https://www.haomeiwen.com/subject/bclovctx.html