Here's what I've created : [TabBarController]->[NavigationController]->[TableView]. I want to create an new [TableView] that will be pushed when I select a cell in the first UITableView. I tried with a pushViewController method. It works but I can't go back to my first TableView (there is no navigation bar). I also tried with a navigationBar between the 2 UITableView but I received the message "cannot push to a navigation bar". Can anyone guide me ? Thanks
[self.navigationController pushViewController:TableView2 animated:YES];
(self is my first UITableView)
pushViewController
– sha