IOS实现自定义透明背景的tabbar
更新时间:2016年08月19日 08:59:04 投稿:daisy
这篇文章介绍的是在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中的导航栏UINavigationBar与工具栏UIToolBar要点解析
UINavigation可以附着于导航控制器之中使用,也可以在controller中单独使用,这里我们将来看iOS中的导航栏UINavigationBar与工具栏UIToolBar要点解析.2016-06-06
iOS App开发中Objective-C使用正则表达式进行匹配的方法
这篇文章主要介绍了iOS App开发中Objective-C使用正则表达式进行匹配的方法,文中举了在iOS中验证用户邮箱与手机号的例子,非常实用,匹配需要的朋友可以参考下2016-05-05


最新评论