美文网首页
iOS13 隐藏tabbar顶部黑线以及tabbar透明度

iOS13 隐藏tabbar顶部黑线以及tabbar透明度

作者: 奋斗吧程序员 | 来源:发表于2020-04-24 19:27 被阅读0次

if(@available(iOS 13.0, *)) {

        UITabBarAppearance *appearance = [self.tabBar.standardAppearance copy];

        appearance.backgroundImage = [UIImage imageWithSize:self.tabBar.size color:[UIColor clearColor]];

        appearance.shadowImage = [UIImage imageWithSize:self.tabBar.size color:[UIColor clearColor]];

        [appearanceconfigureWithTransparentBackground];//透明度关键代码

        self.tabBar.standardAppearance = appearance;

    } else {

        self.tabBar.backgroundImage = [UIImage imageWithSize:self.tabBar.size color:[UIColor clearColor]];

        self.tabBar.shadowImage = [UIImage new];

    }

相关文章

网友评论

      本文标题:iOS13 隐藏tabbar顶部黑线以及tabbar透明度

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