美文网首页
iOS13去掉Tabbar黑线

iOS13去掉Tabbar黑线

作者: 一舟孤月 | 来源:发表于2019-10-11 14:15 被阅读0次

    if(@available(iOS13.0, *)) {UITabBarAppearance* tabbarAppearance =self.standardAppearance; tabbarAppearance.backgroundImage = [UIImageimageWithColor:[UIColorclearColor]]; tabbarAppearance.shadowImage = [UIImageimageWithColor:[UIColorclearColor]];self.standardAppearance = tabbarAppearance; }else{self.backgroundImage = [UIImagenew];self.shadowImage = [UIImagenew]; }```

    其中self是自定义的Tabbar,imageWithColor是为UIImage写的一个分类方法:根据颜色生成一张图片,其中 [UIImage new] 方法已不在适用。

    相关文章

      网友评论

          本文标题:iOS13去掉Tabbar黑线

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