Create UINavigationController in UITableViewController inside UITabBarController
I have an application with based of UITabBarController , and inside one of the tabs I have UITableViewController to display "products", till here everything is working perfectly. Now I want when clicking one of the cells inside the UITableViewController to open a UINavigationController to display UIViewController with details of that product. I think the application hierarchy should be like the following: UITabBarController (BASE) Level-1 | |___ UITableViewController (PRODUCTS) Level-2 | |___ UINavigationController Level-3 | |___ UIViewController (PRODUCT DETAILS) Level-4 How to achieve Level