读书人

UINavigationController跟UITabBarCon

发布时间: 2012-12-17 09:31:40 作者: rapoo

UINavigationController和UITabBarController合用。

TabPage1 *firstViewControlle = [[TabPage1 alloc] init]; UINavigationController *nav1 = [[UINavigationController alloc] initWithRootViewController: firstViewControlle]; UITabBarItem *time = [[UITabBarItem alloc] initWithTitle: @"First" image: nil tag: 0]; time.image = [UIImage imageNamed:@""]; nav1.tabBarItem = time; TabPage2 *secondViewController = [[TabPage2 alloc] init]; UINavigationController *nav2 = [[UINavigationController alloc] initWithRootViewController: secondViewController]; UITabBarItem *time2 = [[UITabBarItem alloc] initWithTitle: @"second" image: nil tag: 1]; nav2.tabBarItem = time2; UITabBarController *tabBarController = [[UITabBarController alloc] init]; NSArray *array = [NSArray arrayWithObjects: nav1,nav2, nil]; tabBarController.viewControllers = array; [self presentViewController:tabBarController animated:YES completion:nil];///////////在TabPage1中self.navigationitem.title = @"111";

读书人网 >移动开发

热点推荐