Apr 12
The full error message was:
2010-04-11 20:17:53.607 myAppName[10228:207] *** Terminating app due to uncaught exception ‘NSInternalInconsistencyException’, reason: ‘-[UITableViewController loadView] loaded the “RootViewController” nib but didn’t get a UITableView.’
Turns out the fix was to change:
@interface RootViewController : UITableViewController <MKMapViewDelegate, CLLocationManagerDelegate> {
to:
@interface RootViewController : UIViewController <MKMapViewDelegate, CLLocationManagerDelegate>
One Response to “[UITableViewController loadView] loaded the “RootViewController” nib but didn’t get a UITableView.’”
Leave a Reply
You must be logged in to post a comment.
October 14th, 2010 at 3:07 am
Thank“s, it was very hepfull.