美文网首页
iOS 去掉tabbar上方的线

iOS 去掉tabbar上方的线

作者: 冬日的太阳_c107 | 来源:发表于2019-01-02 17:29 被阅读0次

    关于怎么去掉tabbar上的横线

    - (void)removeTabBarTopLine {

        CGRect rect = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 0.5);

        UIGraphicsBeginImageContext(rect.size);

        CGContextRef context = UIGraphicsGetCurrentContext();

        CGContextSetFillColorWithColor(context, [[UIColor colorWithHexString:@"dcdcdc"] CGColor]);

        CGContextFillRect(context, rect);

        UIImage *img = UIGraphicsGetImageFromCurrentImageContext();

        UIGraphicsEndImageContext();

        [self.tabBar setBackgroundImage:img];

        [self.tabBar setShadowImage:img];

    }

    相关文章

      网友评论

          本文标题:iOS 去掉tabbar上方的线

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