IOS如何实现自定义透明背景的tabbar
来源:爱站网时间:2020-11-24编辑:网友分享
在IOS中如何把tabbar背景设定为透明这一问题是不是困扰了很多的用户们呢?那么接下来我们就跟随爱站小编的脚步一起去看看IOS如何实现自定义透明背景的tabbar吧。
在IOS中如何把tabbar背景设定为透明这一问题是不是困扰了很多的用户们呢?那么接下来我们就跟随爱站小编的脚步一起去看看IOS如何实现自定义透明背景的tabbar吧。
``` // 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怎样绘制虚线