ios 15 设置 tabbar 不透明

2021-12-31  本文已影响0人  陈怀哲

最近发现升级到 iOS 15 后,app 底部的 tabbar 变成了透明的。可以添加以下的代码,即可设置为不透明的。


if #available(iOS 15.0, *) {
            UITabBar.appearance().scrollEdgeAppearance = appearance
            appearance.configureWithOpaqueBackground()
            appearance.backgroundColor = UIColor.systemBackground
            UITabBar.appearance().standardAppearance = appearance
            UITabBar.appearance().backgroundColor = UIColor.systemBackground
        }


常驻小尾巴:
iOS 技术交流群:windboy2010, 备注iOS技术交流
公众号:我是陈大壮
独立开发者手册:知识星球搜【一个App的成长日记】

上一篇下一篇

猜你喜欢

热点阅读