I am getting this error while trying to create my app structure with story boards
static table views are only valid when embedded in
UITableViewController instance
I have created this sotry board that has a Navigation controller and then several views that branch off the main view that has a tableview in it.
one of the views that I have made off the main view has this error.. I have several other views with the same set up but none of them are having this issue yet.. im woudnering if I resolve this issue then they will say the same thing after as it was the first view I set up..
any help would be appreciated.
When you say view, I’m assuming you mean UIViewControllers. For static tables, your view controller needs to be (must be) a UITableViewController, which is a subclass of UIViewController that handles tables, specifically static tables in your case.