Want to create a cool static UI but : "Static table views are only valid..."
I've also ran into an issue when changing an existing custom view controller, making it extends UITableViewController. XCode isn't smart enough and won't realize it already fits its requirements.
You can solve this problem by editing storyboard source code and changing <viewController ...
to <tableViewController...
.
Original source: https://plus.google.com/108665969482300807329/posts/J4mCASMA3pZ
Add a UITableViewController to your view. It should hold a UITableView. Define this as a static table view, and make it grouped. Add two sections. One with one row, and the other with two rows. Add your Labels buttons and sliders to the rows again.
I do not know why you would want to have two UITableViews here?