bar ios uinavigationcontroller uinavigationbar ios7 uitoolbar

ios - bar - navigation controller programmatically swift



Cómo dibujar una UIToolbar transparente o UINavigationBar en iOS7 (5)

Swift 3 (iOS 10)

Transparente UIToolbar

self.toolbar.setBackgroundImage(UIImage(), forToolbarPosition: .any, barMetrics: .default) self.toolbar.setShadowImage(UIImage(), forToolbarPosition: .any)

Transparente UINavigationBar

self.navigationBar.setBackgroundImage(UIImage(), for: .default) self.navigationBar.shadowImage = UIImage() self.navigationBar.isTranslucent = true

Swift <3

Transparente UIToolbar

self.toolbar.setBackgroundImage(UIImage(), forToolbarPosition: UIBarPosition.Any, barMetrics: UIBarMetrics.Default) self.toolbar.setShadowImage(UIImage(), forToolbarPosition: UIBarPosition.Any)

Transparente UINavigationBar

self.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: UIBarMetrics.Default) self.navigationBar.shadowImage = UIImage() self.navigationBar.translucent = true

C objetivo

Transparente UIToolbar

[self.toolbar setBackgroundImage:[UIImage new] forToolbarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault]; [self.toolbar setShadowImage:[UIImage new] forToolbarPosition:UIBarPositionAny];

Transparente UINavigationBar

[self.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault]; self.navigationBar.shadowImage = [UIImage new]; self.navigationBar.translucent = YES;

Discusión

Establecer translucent a YES en la barra de navegación hace el truco, debido a un comportamiento discutido en la documentación de UINavigationBar . Informaré aquí el fragmento relevante:

Si establece esta propiedad en YES en una barra de navegación con una imagen de fondo personalizada opaca, la barra de navegación aplicará una opacidad del sistema menor que 1.0 a la imagen.

Resultado final

Me gustaría una UIToolbar y / o UINavigationBar completamente transparentes. Probé varios encantamientos sugeridos para iOS 5 anteriores y posteriores, pero ninguno parece funcionar más.

¿Cómo se puede lograr esto en iOS 7?


Algo con lo que tropecé es que si crease una UINavigationBar subclase y luego crease un método empty -(void)drawRect: obtendría una barra de navegación transparente. Solo probé esto en iOS 7. *, ¡pero parecía funcionar!


Si desea hacerlo a través de la aplicación completa, debe usar el proxy UIAppearance (iOS5 +):

UINavigationBar *navigationBarAppearance = [UINavigationBar appearance]; navigationBarAppearance.backgroundColor = [UIColor clearColor]; [navigationBarAppearance setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; navigationBarAppearance.shadowImage = [[UIImage alloc] init];

Documentos: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAppearance_Protocol/Reference/Reference.html

Artículo: http://nshipster.com/uiappearance/


Tratar:

[navBar setBackgroundImage:[UIImage alloc] forBarMetrics:UIBarMetricsDefault];


@implementation MyCustomNavigationBar - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { [self setup]; } return self; } - (id)initWithCoder:(NSCoder *)aDecoder { self = [super initWithCoder:aDecoder]; if (self) { [self setup]; } return self; } - (void)setup { [self setupBackground]; } - (void)setupBackground { self.backgroundColor = [UIColor clearColor]; self.tintColor = [UIColor clearColor]; // make navigation bar overlap the content self.translucent = YES; self.opaque = NO; // remove the default background image by replacing it with a clear image [self setBackgroundImage:[self.class maskedImage] forBarMetrics:UIBarMetricsDefault]; // remove defualt bottom shadow [self setShadowImage: [UIImage new]]; } + (UIImage *)maskedImage { const float colorMask[6] = {222, 255, 222, 255, 222, 255}; UIImage *img = [UIImage imageNamed:@"nav-white-pixel-bg.jpg"]; return [UIImage imageWithCGImage: CGImageCreateWithMaskingColors(img.CGImage, colorMask)]; } @end