iPhone - Making a Tab Bar Transparent

后端 未结 2 898
暗喜
暗喜 2021-01-01 06:52

How do I make a tab bar transparent in cocoa touch?

2条回答
  •  Happy的楠姐
    2021-01-01 07:36

    Now with iOS 5 you can change the UITabBar appearance to make only the background transparent with a simple line of code:

    [[UITabBar appearance] setTintColor:[[UIColor alloc] initWithRed:0 green:0 blue:0 alpha:0.2]];
    

提交回复
热议问题