I used the storyboard and horizontal and vertical stack views to generate a good looking App. This worked fine, but one view does not show the Table View I placed there. In the storyboard everything is fine and no warning is shown. I tried to remove the Table View and renew it, but that did not fix the problem. Has anybody an idea what I missed ?
Have you set constraints to position the tableView ?
You should, it may just be offscreen.
Have you populated the tableView with content ?
You need to define the required dataSource and delegate func for the tableView. And make sure delegate and datasource are properly set.
Otherwise, an empty tableView shows nothing.
To better see what happens, select tableView in IB ; in Attributes Inspector, set its view bg color to red.
And check if you see something.
You should, it may just be offscreen.
Have you populated the tableView with content ?
You need to define the required dataSource and delegate func for the tableView. And make sure delegate and datasource are properly set.
Otherwise, an empty tableView shows nothing.
To better see what happens, select tableView in IB ; in Attributes Inspector, set its view bg color to red.
And check if you see something.