美文网首页
iOS 去掉tabBar顶部线条

iOS 去掉tabBar顶部线条

作者: 夏天爱西瓜汁 | 来源:发表于2017-12-06 15:14 被阅读5次
    有顶部的线的tabbar

        //去掉tabBar顶部线条
        CGRect rect = CGRectMake(0, 0, Screen_Width, Screen_Height);
        UIGraphicsBeginImageContext(rect.size);
        CGContextRef context = UIGraphicsGetCurrentContext();
        CGContextSetFillColorWithColor(context, [[UIColor clearColor] CGColor]);
        CGContextFillRect(context, rect);
        UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
        [self.tabBar setBackgroundImage:img];
        [self.tabBar setShadowImage:img];

    去掉tabbar顶部的线

    相关文章

      网友评论

          本文标题:iOS 去掉tabBar顶部线条

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