整合TabBarController與NavigationController

1、項目結構app

  一開始建立一個空的項目spa

  

2、主要代碼code

  一、AppDelegate.mblog

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    
    UITabBarController *tabBarController = [[UITabBarController alloc] init];
    
    FirstViewController *one = [[FirstViewController alloc] init];
    one.title=@"聯繫人";
    one.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemContacts tag:0];
    UINavigationController *navFirst = [[UINavigationController alloc] initWithRootViewController:one];
    [tabBarController addChildViewController:navFirst];
    
    SecondViewController *two = [[SecondViewController alloc] init];
    two.title=@"收藏";
    two.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFavorites tag:1];
    UINavigationController *navSecond = [[UINavigationController alloc] initWithRootViewController:two];
    [tabBarController addChildViewController:navSecond];

    
    self.window.rootViewController=tabBarController;
    
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

  二、FirstViewController.mget

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(selectRightAction:)];
    self.navigationItem.rightBarButtonItem = rightButton;
}

-(void)selectRightAction:(id)sender
{
    ChildViewController *childViewController;
    childViewController =[[ChildViewController alloc] initWithNibName:@"ChildViewController" bundle:nil];
    childViewController.title=@"添加聯繫人";
    [self.navigationController pushViewController:childViewController animated:YES];
}

  三、SecondViewController.mit

     默認內容io

  四、ChildViewController.mclass

     默認內容select

3、運行效果im

  一、初始界面

  

  二、進入第一個視圖的子視圖

  

  三、切換到第二個視圖

  

相關文章
相關標籤/搜索