tab custom bar iphone uitabbarcontroller uinavigationbar

iphone - custom - Esconder UITabBar cuando se empuja una UIView



uitabbarcontroller swift (8)

Así es como logras que esto funcione:

En el Application Delegate la Application Delegate usted crea el UITabBarController . A continuación, crea un UINavigationController con su controlador raíz como el controlador de vista que desea en la pestaña en particular. Luego inserte el UINavigationController en la matriz " viewControllers " del UITabBarController . al igual que:

ViewControllerForTab1 *tab1Controller = [[ViewControllerForTab1 alloc] initWithNibName:@"ViewControllerForTab1"]; UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:tab1Controller]; [tab1Controller release]; UITabBarController *tabBarController = [[UITabBarController alloc] init]; tabBarController.viewControllers = [NSArray arrayWithObjects: navController, nil]; [navController release]; [self.window addSubView:tabBarController.view];

De esta manera puede establecer la propiedad " hidesBottomBarWhenPushed " en " YES " en cualquier controlador de vista dentro de ese UINavigationController y ocultará el UITabBar .

¡Espero que ayude!

Tengo un UITabBarController donde el controlador de vista predeterminado es un UINavigationController . Quiero ser capaz de ocultar la UITabBar del UITabBarController cuando presiono una determinada vista en el UINavigationController .

He intentado agregar:

delegate.tabBarController.hidesBottomBarWhenPushed = YES;

en mi UINavigationController antes de presionar la vista, pero eso no parece ser el truco.

¿Algún consejo sobre lo que debería hacer o si es posible? ¡Gracias por adelantado!


Dejaré aquí mi solución para esto:

#define FRAME_HIDDEN CGRectMake(0, 0, 768, 1073) //1073 = 1024 (screen) + 49 (UITabBar) #define FRAME_APPEAR CGRectMake(0, 0, 768,1024) -(void) setHidden: (BOOL) hidden{ CGRect frame = (hidden)? FRAME_HIDDEN : FRAME_APPEAR; [self.tabBarController.view setFrame:frame]; [self.tabBarController.tabBar setHidden:hidden]; }

Llama al método ''setHidden'' donde lo necesites! Estoy usando esto y el ''Patrón Singleton'', entonces mis subvistas pueden ocultar el UITabBar en su Superview


Esta es mejor:

viewController.hidesBottomBarWhenPushed = YES; [self.navigationController pushViewController:viewController animated:YES];

Tienes que establecer hidesBottomBarWhenPushed = YES en el controlador que vas a presionar en la vista ...


He descubierto cómo resolver esto, me encontré con el mismo problema, pero Apple también nos dice cómo hacerlo en la muestra llamada: "The Elements" ( http://developer.apple.com/library/ios/#samplecode/TheElements/Introduction/Intro.html )

Consulte la función a continuación sobre cómo hacerlo, agréguela a la función de inicio de la vista que desea insertar.

-(id) init { if(self = [super init]) { self.hidesBottomBarWhenPushed = YES; } return self; }

Ocultará automáticamente la barra de pestañas como lo hace la aplicación de fotos en tu iphone. Y cuando navegue hacia atrás, la vista principal mostrará nuevamente la barra de tabulación.

Buena suerte


He probado la mayoría de las soluciones sugeridas. Al final ninguno de ellos funcionó para mí.

hideTabBarWhenPushed oculta la barra de pestañas no solo para el controlador de vista que se inserta a continuación, sino para todos los controladores de vista que se insertan dentro. Para aquellos que sí quiero que vuelva a aparecer el controlador de la barra de pestañas.

La solución de Orafaelreis (ver arriba) parecía ser la más adecuada. Pero su intento solo funcionó con estrictas orientaciones de retratos, ni siquiera para el revés. Así que tuve que arreglarlo. Esto es lo que finalmente obtuve:

#define kTabBarHeight 49 // This may be different on retina screens. Frankly, I have not yet tried. - (void) hideTabBar:(BOOL)hide { // fetch the app delegate AppDelegate *delegate = [[UIApplication sharedApplication] delegate]; // get the device coordinates CGRect bounds = [UIScreen mainScreen].bounds; float width; float height; // Apparently the tab bar controller''s view works with device coordinates // and not with normal view/sub view coordinates // Therefore the following statement works for all orientations. width = bounds.size.width; height = bounds.size.height; if (hide) { // The tab bar should be hidden too. // Otherwise it may flickr up a moment upon rotation or // upon return from detail view controllers. [self.tabBarController.tabBar setHidden:YES]; // Hiding alone is not sufficient. Hiding alone would leave us with an unusable black // bar on the bottom of the size of the tab bar. // We need to enlarge the tab bar controller''s view by the height of the tab bar. // Doing so the tab bar, although hidden, appears just beneath the screen. // As the tab bar controller''s view works in device coordinations, we need to enlarge // it by the tab bar height in the appropriate direction (height in portrait and width in landscape) // and in reverse/upside down orientation we need to shift the area''s origin beyond zero. switch (delegate.tabBarController.interfaceOrientation) { case UIInterfaceOrientationPortrait: // Easy going. Just add the space on the bottom. [self.tabBarController.view setFrame:CGRectMake(0,0,width,height+kTabBarHeight)]; break; case UIInterfaceOrientationPortraitUpsideDown: // The bottom is now up! Add the appropriate space and shift the rect''s origin to y = -49 [self.tabBarController.view setFrame:CGRectMake(0,-kTabBarHeight,width,height+kTabBarHeight)]; break; case UIInterfaceOrientationLandscapeLeft: // Same as Portrait but add the space to the with but the height [self.tabBarController.view setFrame:CGRectMake(0,0,width+kTabBarHeight,height)]; break; case UIInterfaceOrientationLandscapeRight: // Similar to Upside Down: Add the space and shift the rect. Just use x and with this time [self.tabBarController.view setFrame:CGRectMake(0-kTabBarHeight,0,width+kTabBarHeight,height)]; break; default: break; } } else { // reset everything to its original state. [self.tabBarController.view setFrame:CGRectMake(0,0,width,height)]; [self.tabBarController.tabBar setHidden:NO]; } return; } - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{ // It is important to call this method at all and to call it here and not in willRotateToInterfaceOrientation // Otherwise the tab bar will re-appear. [self hideTabBar:YES]; // You may want to re-arrange any other views according to the new orientation // You could, of course, utilize willRotateToInterfaceOrientation instead for your subViews. } - (void)viewWillAppear: (BOOL)animated { // In my app I want to hide the status bar and navigation bar too. // You may not want to do that. If so then skip the next two lines. self.navigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent; [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide]; [self hideTabBar: YES]; // You may want to re-arrange your subviews here. // Orientation may have changed while detail view controllers were visible. // This method is called upon return from pushed and pulled view controllers. return; } - (void)viewWillDisappear: (BOOL)animated { // This method is called while this view controller is pulled // or when a sub view controller is pushed and becomes visible // Therefore the original settings for the tab bar, navigation bar and status bar need to be re-instated [self hideTabBar:NO]; // If you did not change the appearance of the navigation and status bar in viewWillAppear, // then you can skip the next two statements too. self.navigationController.navigationBar.barStyle = UIBarStyleBlack; [[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationSlide]; return; }

Los comentarios en línea deberían explicar el razonamiento de cada declaración. Sin embargo, puede haber formas más inteligentes de codificarlo.

Hay un efecto secundario junto con la ocultación de la barra de estado y la barra de navegación, que no quiero esconder de ustedes. 1. Cuando regrese de este controlador de navegación al controlador de navegación llamante, la barra de estado y la barra de navegación del controlador llamante se superponen hasta que el dispositivo se gire una vez o hasta que la pestaña relacionada haya sido elegida nuevamente después de que haya otra pestaña al frente. 2. Cuando el controlador de vista llamante es una vista de tabla y cuando el dispositivo está en modo apaisado al volver a la mesa, la tabla se muestra con la orientación apropiada para el paisaje, pero se muestra como si fuera un retrato. La esquina superior izquierda está bien, pero algunas celdas de tabla más barra de pestañas están ocultas debajo de la pantalla. En el lado derecho hay algo de espacio libre. Esto también se soluciona al rotar el dispositivo nuevamente.

Te mantendré actualizado una vez que encontré soluciones para estos errores menores pero desagradables.


Resulta que si configura la vista hidesBottomBarWhenPushed:YES oculta la barra cuando aparece la vista (duh de mi parte). Lo estaba asignando al UITabBarController , que no tiene demasiado sentido cuando lo piensas.

[self.view hidesBottomBarWhenPushed:YES]; [super pushViewController:viewController animated:animated];


cuando se trabaja con guiones gráficos es fácil de configurar el controlador de visualización que ocultará la barra de pestañas al pulsar, en el controlador de vista de destino solo seleccione esta casilla de verificación:


en el primer UIViewController "FirstItemViewController"

@IBAction func pushToControllerAction(sender: AnyObject) { self.hidesBottomBarWhenPushed = true self.performSegueWithIdentifier("nextController", sender: self) }

en el siguiente UIViewController "ExampleViewController" `

override func willMoveToParentViewController(parent: UIViewController?) { if parent == nil { var viewControllers = self.navigationController!.viewControllers if ((viewControllers[viewControllers.count - 2]).isKindOfClass(FirstItemViewController.self)) { (viewControllers[viewControllers.count - 2] as! FirstItemViewController).hidesBottomBarWhenPushed = false } } }

Mire esta respuesta https://.com/a/36148064/3078925