I have create a scene using the story board that contains a single, grouped table view. The cells for this table are static (this is a configuration view). I created all the table cells from within the storyboard editor The view is assigned a custom view controller which inherits from the UITableViewController. If set this as the 'initial view controller' for testing purposes the application crashes. The error is:
illegal configuration - Static table view are only valid when embedded in UITableViewController
In the view controller for this view i have implemented both tableView:numberOfRowsInSection & numberOfSectionsInTableView
Can someone tell me how to make static tableviews work with storyboards?
Thanks!