Xcode 10.1, Swift 4.2
I've got a UITableView with Table View Cell which has it's Label, and these all show up in the storyboard.
The label is inset from the cell by what appears to be a distance of 15, although I think this will be different on different devices.
This is a link to a screen shot
I've been trying to make it the label flush with the cell. The nearest I've got to this is
self.tableView.contentInset = UIEdgeInsets(top: 0, left: -15, bottom: 0, right: 30)
which does the left margin but not the right. (I'll have to change the value 15 for different devices)
I've tried doing this in Auto Layout, but it seems I'm not able to add constraints to this label.
Any suggestions greatly appreciated.
Thanks, Ian
