Saya ingin sepenuhnya transparan UIToolbar
dan / atau UINavigationBar
. Saya telah mencoba berbagai mantra yang disarankan untuk sebelum dan sesudah iOS 5 tetapi tampaknya tidak ada yang berhasil lagi.
Bagaimana ini bisa dilakukan di iOS 7?
ios
uinavigationcontroller
uinavigationbar
ios7
uitoolbar
Ben Packard
sumber
sumber
Jawaban:
Swift 3 (iOS 10)
Transparan
UIToolbar
self.toolbar.setBackgroundImage(UIImage(), forToolbarPosition: .any, barMetrics: .default) self.toolbar.setShadowImage(UIImage(), forToolbarPosition: .any)
Transparan
UINavigationBar
self.navigationBar.setBackgroundImage(UIImage(), for: .default) self.navigationBar.shadowImage = UIImage() self.navigationBar.isTranslucent = true
Cepat <3
Transparan
UIToolbar
self.toolbar.setBackgroundImage(UIImage(), forToolbarPosition: UIBarPosition.Any, barMetrics: UIBarMetrics.Default) self.toolbar.setShadowImage(UIImage(), forToolbarPosition: UIBarPosition.Any)
Transparan
UINavigationBar
self.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: UIBarMetrics.Default) self.navigationBar.shadowImage = UIImage() self.navigationBar.translucent = true
Objective-C
Transparan
UIToolbar
[self.toolbar setBackgroundImage:[UIImage new] forToolbarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault]; [self.toolbar setShadowImage:[UIImage new] forToolbarPosition:UIBarPositionAny];
Transparan
UINavigationBar
[self.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault]; self.navigationBar.shadowImage = [UIImage new]; self.navigationBar.translucent = YES;
Diskusi
Menyetel
translucent
keYES
pada bilah navigasi melakukan trik, karena perilaku yang dibahas dalamUINavigationBar
dokumentasi. Saya akan melaporkan di sini fragmen yang relevan:Hasil akhir
sumber
iOS 7
simulatorJika Anda ingin melakukannya melalui seluruh aplikasi, Anda harus menggunakan proxy UIApearance (iOS5 +):
UINavigationBar *navigationBarAppearance = [UINavigationBar appearance]; navigationBarAppearance.backgroundColor = [UIColor clearColor]; [navigationBarAppearance setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; navigationBarAppearance.shadowImage = [[UIImage alloc] init];
Dokumen: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAppearance_Protocol/Reference/Reference.html
Artikel: http://nshipster.com/uiappearance/
sumber
UINavigationController
subkelas tertentu — yaitu, subclass yang Anda inginkan agar perilaku ini diterapkan.Mencoba:
[navBar setBackgroundImage:[UIImage alloc] forBarMetrics:UIBarMetricsDefault];
sumber
@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
sumber
Sesuatu yang saya temukan adalah bahwa jika saya membuat subclass
UINavigationBar
dan kemudian membuat-(void)drawRect:
metode kosong , saya akan mendapatkan bilah navigasi transparan. Saya hanya menguji ini di iOS 7. *, tetapi sepertinya berhasil!sumber