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

去掉tabBar顶部线条

作者: 张家杰仔 | 来源:发表于2017-04-06 10:43 被阅读16次
        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顶部线条

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