Completely transparent UITabBar in iOS 8

后端 未结 3 890
后悔当初
后悔当初 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:18

    Swift 3.0

    ... call this code in the AppDelegate's didFinishLaunchingWithOptions

    let tabBar = UITabBar.appearance()
    tabBar.barTintColor = UIColor.clear
    tabBar.backgroundImage = UIImage()
    tabBar.shadowImage = UIImage()
    

    The result will be a transparent background for every UITabBar.

提交回复
热议问题