我是新來的ios,我有一個tabbar控制器的問題。我在我的項目中使用了兩個標籤欄控制器。一個在應用程序午餐時加載,它運行良好。我想在didselect行加載另一個。如何執行此操作。我做了很多實驗,但沒有任何作用。如何使用導航控制器加載tabbar控制器xib
回答
-(void) hidetabbar {
[UIView animateWithDuration:0.5
animations:^{
for(UIView *view in tabBarController.view.subviews)
{
if([view isKindOfClass:[UITabBar class]])
{
if (hiddenTabBar) {
[view setFrame:CGRectMake(view.frame.origin.x, 431, view.frame.size.width, view.frame.size.height)];
} else {
[view setFrame:CGRectMake(view.frame.origin.x, 480, view.frame.size.width, view.frame.size.height)];
}
} else {
if (hiddenTabBar) {
[view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, 431)];
} else {
[view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, 480)];
}
}
}
}];
hiddenTabBar = !hiddenTabBar;
}
when u r clicking on the table view did select row hide the tabbar in the viewcontroller that u r sending
-(void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:YES];
[((AppDelegate*)[[UIApplication sharedApplication]delegate]) hidetabbar];
}
-(void)tabBarControllerView
{
tabBarController = [[UITabBarController alloc] init];
tabBarController.view.backgroundColor = [UIColor blackColor];
tabBarController.delegate = self;
//Add some tabs to the controller...
//----First tab----//
//-----second Tab -----//
//------3rd tab--//
//-----4th tab bar--------//
//-----5th tab bar--------//
[self.view addSubview:tabBarController.view];
[navigationController pushViewController:tabBarController animated:YES];
tabBarController.tabBar.tag=100;
tabBarController.view.hidden = NO;
}
- (void)tabBarController:(UITabBarController *)tabBarControllers didSelectViewController:(UIViewController *)viewController
{
if (tabBarControllers.selectedIndex == 0)
{
}
else if (tabBarControllers.selectedIndex == 1)
{
}
else if (tabBarControllers.selectedIndex == 2)
{
}
else if (tabBarControllers.selectedIndex == 3)
{
}
else if (tabBarControllers.selectedIndex == 4)
{
}
}
隱藏其中烏爾做沒有選擇表,並添加另一個標籤欄在視圖控制器主選項卡欄.. 嘗試一些像這樣的東西,它可以幫助ü
嗨,我的父視圖控制器是tabbar控制器。在didselect行我想加載一個新的tabbar控制器。如何去做 – user1376474
爲你的父視圖標籤欄控制器賦予一個標籤值,並在選擇行中將u導向另一個視圖控制器,檢查tabcontroller視圖對象,並在標籤值的幫助下從該視圖控件中移除標籤欄查看cotroller並在該類中添加你的新標籤欄控制器 – 08442
添加以下代碼在didSelect事件
UITabBarController *tabBarController = [[UITabBarController alloc]init];
NSArray*tabBarimageArray=[NSArray arrayWithObjects:@"firstTabImage.png",@"secondTabImage.png", nil];
YourFirstTabRootViewController *firstVc = [[YourFirstTabRootViewController alloc]initWithNibName:@"YourFirstTabRootViewController" bundle:nil];
UINavigationController *firstNavigationController=[[UINavigationController alloc]initWithRootViewController:firstVc];
YourSecondTabRootViewController *secondVc = [[YourSecondTabRootViewController alloc]initWithNibName:@"YourFirstTabRootViewController" bundle:nil];
UINavigationController *secondNavigationController=[[UINavigationController alloc]initWithRootViewController:secondVc];
NSArray *VCs = [[NSArray alloc] initWithObjects:firstNavigationController,secondNavigationController nil];
NSArray *names = [NSArray arrayWithObjects:
NSLocalizedString(@"Tab1", @""),
NSLocalizedString(@"Tab2", @""),
nil];
NSMutableArray *tabBarViewControllers = [[NSMutableArray alloc] initWithCapacity:[VCs count]];
NSInteger index = 0;
for (id controller in VCs) {
UINavigationController * navController = controller ;
// THIS SETS UP THE TAB BAR ITEMS/IMAGES AND SET THE TAG FOR TABBAR_ITEM_TAGS
NSString *tabName = [names objectAtIndex:index];
UIImage *tabImage = [UIImage imageNamed:[NSString stringWithFormat:[tabBarimageArray objectAtIndex:index]]];
navController.title = tabName;
UITabBarItem *tempTab = [[UITabBarItem alloc] initWithTitle:tabName
image:tabImage
tag:index];
navController.tabBarItem = tempTab;
[tabBarViewControllers addObject:navController];
index ++;
}
[ tabBarController setViewControllers:tabBarViewControllers];
[self presentModalViewController:tabBarController animated:YES];
如何隱藏父標籤欄... – user1376474
- 1. Tabbar控制器加載空的xib
- 2. 如何使用xib在導航控制器中加載視圖
- 3. 添加導航控制器到tabbar控制器iPhone
- 4. 如何加載的.xib文件由控制器的TabBar
- 5. TabBar控制器和導航控制器 - 誰是經理?
- 6. 嵌套導航控制器和TabBar控制器
- 7. 問題:的TabBar控制器+導航控制器:編程
- 8. 實現一個導航控制器到一個tabbar控制器
- 9. 從Tabbar控制器導航到主根控制器
- 10. 在導航控制器上推TabBar控制器
- 11. 導航控制器和tabbar控制器在同一時間?
- 12. TabBar控制器和導航欄
- 13. ImagePicker解除tabBar導航控制器
- 14. 結合TabBar和導航控制器IOS8
- 15. iOS TabBar和導航控制器
- 16. 在單個應用程序中使用導航控制器的Tabbar控制器
- 17. 從iphone上的tabbarview控制器加載導航控制器
- 18. 如何在導航控制器中添加tabbar項目?
- 19. tabbar控制器
- 20. 導航控制器不加載意見
- 21. 從按鈕加載導航控制器
- 22. iPhone TabBar控制器使用
- 23. 導航控制器
- 24. 導航控制器與導航控制器的標籤欄控制器
- 25. UISplitView控制器+ TabBar控制器+ iPad
- 26. 如何調用視圖控制器與導航控制器
- 27. 導航(c)中的Tabbar(c)中的導航(控制器)
- 28. 導航控制器返回到上方導航控制器
- 29. 從導航控制器導航到正常視圖控制器
- 30. TabBar控制器iphone
[你嘗試過什麼(http://mattgemmell.com/2008/12/08/what-have-you-tried/) – akk
你的問題的標題和你的問題的說明似乎在訴說不同的東西。你究竟想要做什麼?你的父視圖控制器是什麼? NavigationController或Tabbarcontroller? – Neo