My application works for iOS 5.1 but for iOS 6 simulator I get the following error.
Terminating app due to uncaught exception \'NSInternalInconsist
If you use UITableView as your Top View.
Like this :
You need use UITableViewController in your Controller
class ItemsViewController: UITableViewController
If you use UITableView under a View in your Storyboatd.
Like this :
You need use UITableViewDelegate and UITableViewDataSource with UIViewController
class ItemsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource