I’m using this code
-(void)gotoInformationViewController:(id)sender
{
MoreViewController *moreViewController = [[MoreViewController alloc] init];
[self.navigationController pushViewController:moreViewController animated:YES];
[moreViewController release];
}
to push a MoreViewController (which is UITableViewController) but it doesn’t have UINavigationBar when pushed, just UITableView on whole screen.
Try this in your view Controllers
and make sure in interface builder your viewcontroller’s top bar is not set to none