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
Tried various solutions based on the cell.separatorInset = UIEdgeInsetsMake() workaround, none of them working properly.
cell.separatorInset = UIEdgeInsetsMake()
For my iOS11 UITableViewStyleGrouped based project, this did it:
UITableViewStyleGrouped
self.tableView.separatorColor = self.tableView.backgroundColor;