Navigation Items in UITableViewController are not appearing?

Heh, I've been stumped by this too. What you need to do is send the rootViewController.

Heh, I've been stumped by this too. What you need to do is send the rootViewController. I've never used a tabBar for anything except on the main screen but your code will probably look like this: after arTabBarController.

SelectedViewController = arViewController; UINavigationController *navController = UINavigationController alloc initWithRootViewController: arTabBarController autorelease; self presentModalViewController: navController animated:YES; Like I said I haven't done it with a tabBar but I'm pretty sure it will be something along these lines.

I needed to add a UINavigationBar: ARViewController* arViewController = ARViewController alloc initWithNibName:@"ARViewController" bundle:nilautorelease; UINavigationController *arNavController = UINavigationController alloc initWithRootViewController:arViewController; LeaderBoardTableViewController* lbViewController = LeaderBoardTableViewController alloc initWithNibName:@"LeaderBoardTableViewController" bundle:nilautorelease; lbViewController. Title = @"Leaderboard"; UINavigationController *lbNavController = UINavigationController alloc initWithRootViewController:lbViewController; arTabBarController = UITabBarController alloc init;//initWithNibName:nil bundle:nil; arTabBarController. ViewControllers = NSArray arrayWithObjects:arNavController, lbNavController, nil; arTabBarController.

SelectedViewController = arNavController; self presentModalViewController:arTabBarController animated:YES.

Dammut, missed by 6 seconds :( – Rudiger Jun 16 '10 at 2:57.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions