Reputation: 39
How to Solve this crash in Xcode. in UITableView
UITableViewController loadView] loaded the "BYZ-38-t0r-view-8bC-Xf-vdC" nib but didn't get a UITableView.
Upvotes: 1
Views: 3664
Reputation: 31016
For a UITableViewController
, the view property in the storyboard must be connected to a UITableView
object. Either you don't have the view property connected or you have it connected to the wrong type of view.
Upvotes: 5