美文网首页
ios 15 设置 tabbar 不透明

ios 15 设置 tabbar 不透明

作者: 陈怀哲 | 来源:发表于2021-12-31 12:38 被阅读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的成长日记】

    相关文章

      网友评论

          本文标题:ios 15 设置 tabbar 不透明

          本文链接:https://www.haomeiwen.com/subject/ccpgqrtx.html