我想在我的應用程序中使用透明tabbar,因此用戶可以在tabBar後面看到uitableview
。iOS透明uitabbar無法正常工作
我已經在這裏看到了所有的主題,但還沒有成功。
我在我的AppDelegate下面的代碼:
UITabBar *tabBar = [self.tabBarController tabBar];
if ([tabBar respondsToSelector:@selector(setBackgroundImage:)])
{
tabBar.opaque = NO;
tabBar.alpha = 0.8;
[[UITabBar appearance] setTintColor:[[UIColor alloc] initWithRed:0.0 green:0 blue:0 alpha:0.9]];
[tabBar setBackgroundImage:[UIImage imageNamed:@"transparent-tabbar.png"]];
}
我只是不與禁用標籤欄的默認黑色背景succeded。
我錯過了什麼?
通過文件透明tabbar.png是這樣的: http://www.fastup.co.il/images/49382332.png
感謝。
請看到這兩個鏈接,希望它會有所幫助。 –
piam