I created an empty xib, I dragged a UITableViewController, set Custom class to my class that extends from UITableViewController at both the UITableViewController and File's Owner.
When I run, it says:
'A view can only be associated with at most one view controller at a time! View ; layer = ; contentOffset: {0, 0}> is associated with . Clear this association before associating this view with .'
At connections inspector I see that the UITableViewController element has:
- tableView - Table View
- view - Table View (greyed)
- dataSource - Table View
- delegate - Table View
First Responder has nothing.
File's Owner has:
- tableView is not attached to anything
- view - Table View
If I remove the view connection at File's Owner, it claims that the view outlet is not set.