标签:objective-c ios开发 代码 教程 app
这个问题一直比较苦恼,网上很多方法实验下来都不是很好,今天终于解决了。
直接上代码:
CGRect rect = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.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];
[self.tabBar setBackgroundImage:[UIImage imageNamed:@"tabbarbg3.jpg"]];
版权声明:本文为博主原创文章,未经博主允许不得转载。
IOS开发教程--如何去除tabbar顶部线条及设置背景图片
标签:objective-c ios开发 代码 教程 app
原文地址:http://blog.csdn.net/wanglixin1999/article/details/46947655