iOS 15适配

2022-10-23  本文已影响0人  小明讲啥故事
    let baImage = UIImage.init(color: .init(hex: 0x171717))
    tabBar.backgroundImage = baImage
    let appearance = UITabBarAppearance()
        let effectView = UIVisualEffectView.init(effect: UIBlurEffect.init(style: .light))
        appearance.backgroundImage = baImage
        if #available(iOS 15.0, *) {
            self.tabBar.standardAppearance = appearance
            self.tabBar.scrollEdgeAppearance = appearance
        } else {
            // Fallback on earlier versions
        }
上一篇 下一篇

猜你喜欢

热点阅读