您的位置:首页 > 其它

去掉tabbar的边框线

2015-11-21 09:31 302 查看
转载自:http://www.shangxueba.com/jingyan/2453883.html

- (void)viewWillAppear:(BOOL)animated{//去掉UITabbar的边框线

[self.tabBarController.tabBar setBackgroundImage:[Utill createImageWithColor:[UIColor clearColor]]];

[self.tabBarController.tabBar setShadowImage:[Utill createImageWithColor:[UIColor clearColor]]];

}

转载自:http://blog.csdn.net/hengshujiyi/article/details/22855811

- (UIImage*) createImageWithColor: (UIColor*) color

{

CGRect rect=CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);

UIGraphicsBeginImageContext(rect.size);

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetFillColorWithColor(context, [color CGColor]);

CGContextFillRect(context, rect);

UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return theImage;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: