Chciałbym całkowicie przejrzysty UIToolbar
i / lub UINavigationBar
. Wypróbowałem różne zaklęcia sugerowane dla wersji przed i po iOS 5, ale żadna z nich już nie działa.
Jak można to osiągnąć w iOS 7?
ios
uinavigationcontroller
uinavigationbar
ios7
uitoolbar
Ben Packard
źródło
źródło
Odpowiedzi:
Swift 3 (iOS 10)
Przezroczysty
UIToolbar
self.toolbar.setBackgroundImage(UIImage(), forToolbarPosition: .any, barMetrics: .default) self.toolbar.setShadowImage(UIImage(), forToolbarPosition: .any)
Przezroczysty
UINavigationBar
self.navigationBar.setBackgroundImage(UIImage(), for: .default) self.navigationBar.shadowImage = UIImage() self.navigationBar.isTranslucent = true
Szybki <3
Przezroczysty
UIToolbar
self.toolbar.setBackgroundImage(UIImage(), forToolbarPosition: UIBarPosition.Any, barMetrics: UIBarMetrics.Default) self.toolbar.setShadowImage(UIImage(), forToolbarPosition: UIBarPosition.Any)
Przezroczysty
UINavigationBar
self.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: UIBarMetrics.Default) self.navigationBar.shadowImage = UIImage() self.navigationBar.translucent = true
Cel C
Przezroczysty
UIToolbar
[self.toolbar setBackgroundImage:[UIImage new] forToolbarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault]; [self.toolbar setShadowImage:[UIImage new] forToolbarPosition:UIBarPositionAny];
Przezroczysty
UINavigationBar
[self.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault]; self.navigationBar.shadowImage = [UIImage new]; self.navigationBar.translucent = YES;
Dyskusja
Ustawianie
translucent
sięYES
na pasku nawigacyjnym załatwia sprawę, ze względu na zachowanie omówione wUINavigationBar
dokumentacji. Podam tutaj odpowiedni fragment:Ostateczny wynik
źródło
iOS 7
symulatoraJeśli chcesz to zrobić w całej aplikacji, użyj proxy UIAppearance (iOS5 +):
UINavigationBar *navigationBarAppearance = [UINavigationBar appearance]; navigationBarAppearance.backgroundColor = [UIColor clearColor]; [navigationBarAppearance setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; navigationBarAppearance.shadowImage = [[UIImage alloc] init];
Dokumenty: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAppearance_Protocol/Reference/Reference.html
Artykuł: http://nshipster.com/uiappearance/
źródło
UINavigationController
podklasami, tj. Takimi, do których chcesz zastosować to zachowanie.Próbować:
[navBar setBackgroundImage:[UIImage alloc] forBarMetrics:UIBarMetricsDefault];
źródło
@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
źródło
Coś, na co się natknąłem, to fakt, że gdybym utworzył podklasę,
UINavigationBar
a następnie utworzył pustą-(void)drawRect:
metodę, uzyskałbym przezroczysty pasek nawigacji. Testowałem to tylko w iOS 7. *, ale wydawało się, że działa!źródło