I'm accessing a navigation controller from the app delegate and trying to push another view:
[appDelegate.myNavigationController pushViewController:self.detailView animated:YES];
but nothing is happening. The above is in myTableView.
The app is tabbar based. I added a NavigationController object under the TabbarController object in IB. Then I created a reference to myNavigationController in the app delegate.
Any suggestions how I can figure out why the above code isn't working? It works if addSubview to the current view.