I have searched everywhere but cannot find answer to this question.
In my UITableView's cells, there is empty space on the left side. How do I get rid of it?
I'm using swift-4 IOS-11, xCode- Version 9.0 beta 6
As shown in this picture, I can not remove the left margin.
I tried these but not:
1-> cell.imageView?.contentMode = .scaleToFill
2-> tableView.layoutMargins = UIEdgeInsets.zero
tableView.separatorInset = UIEdgeInsets.zero
3->cell.layoutMargins = UIEdgeInsets.zero
4->self.tableView.contentInset = UIEdgeInsetsMake(0, -15, 0, 0);
Please Help me :/