Grouped UITableview remove outer separator line

前端 未结 19 2177
遇见更好的自我
遇见更好的自我 2020-12-02 10:58

I have a grouped UITableview which is created programatically. Also I have a cell with xib file populated in tableview programmatically as well. So far so good. But I want t

19条回答
  •  执笔经年
    2020-12-02 11:42

     override func layoutSubviews() {
        super.layoutSubviews()
        subviews.filter { $0 != contentView && $0.frame.width == frame.width }.first?.removeFromSuperview()
    }
    

提交回复
热议问题