手机
当前位置:查字典教程网 >编程开发 >IOS开发 >IOS实现自定义透明背景的tabbar
IOS实现自定义透明背景的tabbar
摘要:话不多说,直接看示例代码```//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实现自定义透明背景的tabbar】相关文章:

iOS多线程应用开发中自定义NSOperation类的实例解析

IOS实战之自定义转场动画详解

iOS开发实现音频播放功能

iOS自定义键盘切换效果

IOS封装自定义布局的方法

Objective-C实现自定义的半透明导航

iOS实现两个控制器之间数据的双向传递

ios实现文件对比的方法

iOS应用中使用Auto Layout实现自定义cell及拖动回弹

iOS实现滚动字幕的动画特效

精品推荐
分类导航