美文网首页iOS归纳
ios TableViewCell 去掉分割线

ios TableViewCell 去掉分割线

作者: CoderChan | 来源:发表于2018-07-20 21:36 被阅读0次

    正常我们都会直接设置
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    但是有点时候我只想取消指定的哪个cell的分割线, 这时候这个方法就不能满足了,

    我们打开小面包可以看到 UITableViewCell 里面有两个 UITableViewCellSeparatorView, 是私有的, Snip20180720_11.png
    简单粗暴就是不让系统加载这两个view就可以:
    在不想显示的cell中重写下面这个方法:
    - (void)addSubview:(UIView *)view
    {
        if (![view isKindOfClass:[NSClassFromString(@"_UITableViewCellSeparatorView") class]] && view)
            [super addSubview:view];
    }
    

    相关文章

      网友评论

        本文标题:ios TableViewCell 去掉分割线

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