When I create a static table view and put it in a normal view controller, I get an error which says that static table views must be in UITableViewController’s.
What I want is a view on the iPad which has a static table view which takes up most of the screen, but a standard UIView under it which always stays visible and has a couple of labels which I update based on content in the table view.
Is there a way to use a UITableViewController and have the tableView not be full screen so that I can add a subview to it in a Storyboard?
If no, can it be done in code?
Any tips would be appreciated!
The real answer is to create a custom container controller.
For instance, you can have a static table view inside a nav controller. So, you need to create a container class, like a nav controller or whatever yours is, and add the static table view controller to that.