修改Tarbbar顶部横线
作者:
赤焰军少帅林殊 | 来源:发表于
2018-05-29 10:53 被阅读26次 CGRect rect = CGRectMake(0, 0, SCREEN_WIDTH, 0.5);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context,RGB(231, 231, 231).CGColor);
CGContextFillRect(context, rect);
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[self.tabBar setShadowImage:img];
[self.tabBar setBackgroundImage:[[UIImage alloc]init]];
本文标题:修改Tarbbar顶部横线
本文链接:https://www.haomeiwen.com/subject/lgmojftx.html
网友评论