我試圖讓我的TabBar透明的,我已經搜查,但所有我發現了導致部分並沒有完全透明tabBars文章,有些是爲iOS 5等在iOS的8
完全透明UITabBar我想做到這一點所看到的草圖3:
什麼是實現這一目標的最簡單的方法?
我想這樣做的:
// Make the tabBar transparent
self.tabBarController.tabBar.backgroundColor = [UIColor clearColor];
self.tabBarController.tabBar.translucent = YES;
但結果不完全完美!
真的很感謝幫助:)
真誠, 埃裏克
更新
// Make the tabBar transparent
[[UITabBar appearance] setBarTintColor:[UIColor clearColor]];
self.tabBarController.tabBar.translucent = YES;
同樣的結果與我把我的更新問題的代碼:/ - 我把這個代碼在viewWillAppear中的方法,是正確的? – Erik 2014-10-09 13:26:08
@Erik'viewWillAppear:'爲時已晚。嘗試把它放在AppDelegate的'application:didFinishLaunchingWithOptions:'中,看看是否有幫助。 – 2014-10-09 17:12:26
@JohannesFagrenkrug不幸的是,我的更新中的代碼與didFinishLaunchingWithOptions中的代碼相同: – Erik 2014-10-09 17:18:17