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
You can remove separators even in grouped UITableView with Static Cell:
class CustomCell: UITableViewCell { override func layoutSubviews() { super.layoutSubviews() for view in subviews where view != contentView { view.removeFromSuperview() } }