美文网首页
根控制器

根控制器

作者: Wang99 | 来源:发表于2017-09-18 09:05 被阅读0次

    FifthViewController *five = [[FifthViewController alloc]init];

    UINavigationController *nav5 = [[UINavigationController alloc]initWithRootViewController:five];

    nav5.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"下载管理" image:[UIImage imageNamed:@"7.png"] tag:5];

    UITabBarController *tabBar = [[UITabBarController alloc]init];

    //设置tabbar的子控制器

    tabBar.viewControllers = [NSArray arrayWithObjects:nav1,nav2,nav3,nav4,nav5, nil];

    tabBar.delegate = self;

    [self.view addSubview:tabBar.view];

    相关文章

      网友评论

          本文标题:根控制器

          本文链接:https://www.haomeiwen.com/subject/wfuvsxtx.html