0

iOS 6 で透明なタブバーを使用したいアプリでストーリーボードを使用しています。

私がしたことは、このコードをここに追加すると、透明度のあるタブバーの画像が 1 つあることです。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
     ...

     [[UITabBar appearance] setBackgroundImage:[UIImage imageNamed:@"TabImg.png"]];
     [[UITabBar appearance] setBackgroundColor:[UIColor clearColor]];
     ...
     ...
}

iOS 7 では Transperancy が表示されますが、iOS 6 では表示されません。

iOS 6 でタブバーの背景を透明にすることは可能ですか?

前もって感謝します。

4

1 に答える 1

0

UITabBarの色合いの色プロパティを使用できます

[[UITabBar appearance] setTintColor:[[UIColor alloc] initWithRed:0 green:0 blue:0 alpha:0.5]];
于 2013-11-14T06:52:18.817 に答える