UINavigationController和UITabBarController合用。

  1. FirstViewControlle *firstViewControlle = [[FirstViewControlle alloc] init];  
  2.     UINavigationController *nav1 = [[UINavigationController alloc] initWithRootViewController: firstViewControlle];  
  3.     UITabBarItem *time = [[UITabBarItem alloc] initWithTitle: @"First" image: nil tag: 0];  
  4.     nav1.tabBarItem = time;  
  5.       
  6.     SecondViewController *secondViewController = [[SecondViewController alloc] init];  
  7.     UINavigationController *nav2 = [[UINavigationController alloc] initWithRootViewController: secondViewController];  
  8.     UITabBarItem *time2 = [[UITabBarItem alloc] initWithTitle: @"second" image: nil tag: 1];  
  9.     nav2.tabBarItem = time2;  
  10.       
  11.     UITabBarController *tabBarController = [[UITabBarController alloc] init];  
  12.     NSArray *array = [NSArray arrayWithObjects: nav1,nav2, nil];  
  13.     tabBarController.viewControllers = array;  
  14.       
  15.     [self.window addSubview: tabBarController.view];  

你可能感兴趣的:(UINavigationController和UITabBarController合用。)