UITabbarController背景颜色

作者: 直男程序员 | 来源:发表于2018-02-28 15:23 被阅读38次

项目中遇到要修改UITabbarController的背景颜色问题,网上找的大部分都是设置backgroundcolor或者tincolor,或者是自定义view或者使用图片的,其实实现起来很简单.

背景红色

实现上面效果只需要简单的两行代码 

```

//swift

UITabBar.appearance().backgroundColor = UIColor.red

UITabBar.appearance().backgroundImage = UIImage()

//oc

[[UITabBarappearance]setBackgroundImage:[[UIImagealloc]init]];

[[UITabBarappearance]setBackgroundColor:[UIColorwhiteColor]];

```

相关文章

网友评论

    本文标题:UITabbarController背景颜色

    本文链接:https://www.haomeiwen.com/subject/ghtixftx.html