美文网首页
去掉Tabbar顶部线条

去掉Tabbar顶部线条

作者: 流沙3333 | 来源:发表于2017-07-10 13:24 被阅读10次

    - (void)changeTabBar {

    //不透明

    self.tabBar.translucent=NO;

    CGRectrect =CGRectMake(0,0,KScreenWidth,49);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRefcontext =UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [[UIColorclearColor]CGColor]);

    CGContextFillRect(context, rect);

    UIImage*img =UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    [self.tabBa rsetBackgroundImage:img];

    [self.tabBar setShadowImage:img];

    }

    原理:其实并没有删除横线,只是把它变成透明了。

    相关文章

      网友评论

          本文标题:去掉Tabbar顶部线条

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