美文网首页
UITableBar 完全透明

UITableBar 完全透明

作者: ruixinjia | 来源:发表于2021-04-01 13:06 被阅读0次

    if (@available(iOS 13, *)) {
    UITabBarAppearance *appearance = [self.tabBar.standardAppearance copy];
    appearance.backgroundImage = [UIImage imageWithColor:[UIColor clearColor]];
    appearance.shadowImage = [UIImage imageWithColor:[UIColor clearColor]];
    // 官方文档写的是 重置背景和阴影为透明
    [appearance configureWithTransparentBackground];
    self.tabBar.standardAppearance = appearance;
    } else {
    self.tabBar.backgroundImage = [UIImage new];
    self.tabBar.shadowImage = [UIImage new];
    }

    相关文章

      网友评论

          本文标题:UITableBar 完全透明

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