My application works for iOS 5.1 but for iOS 6 simulator I get the following error.
Terminating app due to uncaught exception \'NSInternalInconsist
There is several reason why this may occur.
You may have not have added UITableViewDelegate & UITableViewDataSource to your .h
@interface TableController : UIViewController {
You may have not connected your declared outlets to the components in the Storyboard/Nib
You maybe calling a UIViewController instead of a UITableView or vide verser in your .h
@interface TableController : UIViewController
or
@interface TableController : UITableViewController