On selecting a cell in a UITableView (which itself is placed on the rootView of a UINavigationController) I push a new SubviewController (which has another TableView as its view) onto the NavigationController.
It all works fine, but when it gets displayed it has a transparent Border around it (the same width on all the sides).
I have no Idea what the problem could be. I’m using the same CustomTableCells as in said rootView and if I look at the Properties of the TableView in IB, the Settings are the same as the ones of the UITableView that sits in the rootView of my UINavigationController…
Just solved my own problem…
was instantiating said subViewController with a style instead of just calling init…
^^left a blank border around my UTTableView^^
^^no border anymore with the above code^^
sorry