去掉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
网友评论