Completely transparent UITabBar in iOS 8

后端 未结 3 887
后悔当初
后悔当初 2020-12-24 14:43

I\'m trying to make my tabBar transparent, I\'ve searched but all I found was articles resulting in partly and not fully transparent tabBars and some were for IOS 5, etc.

3条回答
  •  無奈伤痛
    2020-12-24 15:33

    Have you tried the barTintColor?

    [[UITabBar appearance] setBarTintColor:[UIColor clearColor]];
    [[UITabBar appearance] setBackgroundImage:[UIImage new]];
    

    That should do the trick.

提交回复
热议问题