IOS实现自定义透明背景的tabbar_IOS开发教程-查字典教程网
IOS实现自定义透明背景的tabbar
IOS实现自定义透明背景的tabbar
发布时间:2016-12-28 来源:查字典编辑
摘要:话不多说,直接看示例代码```//UIImageView*imageView=[[UIImageViewalloc]initWithFram...

话不多说,直接看示例代码

``` // UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, kScreenW, tabBarHeight + 5)]; // [imageView setImage:[self createImageWithColor:[UIColor clearColor]]]; // [imageView setContentMode:UIViewContentModeScaleToFill]; // [self.tabBar insertSubview:imageView atIndex:0]; //覆盖原生Tabbar的上横线 // [[UITabBar appearance] setShadowImage:[self createImageWithColor:[UIColor clearColor]]]; //背景图片为透明色 // [[UITabBar appearance] setBackgroundImage:[self createImageWithColor:[UIColor clearColor]]]; self.tabBar.backgroundColor = [UIColor clearColor]; //设置为半透明 self.tabBarController.tabBar.translucent = YES; ``` ``` -(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; } ```

以上就是在IOS实现自定义透明背景的tabbar的全部内容,希望这篇文章对大家能有所帮助。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新IOS开发学习
    热门IOS开发学习
    编程开发子分类