UITabbarController背景颜色
2018-02-28 本文已影响38人
直男程序员
项目中遇到要修改UITabbarController的背景颜色问题,网上找的大部分都是设置backgroundcolor或者tincolor,或者是自定义view或者使用图片的,其实实现起来很简单.

实现上面效果只需要简单的两行代码
```
//swift
UITabBar.appearance().backgroundColor = UIColor.red
UITabBar.appearance().backgroundImage = UIImage()
//oc
[[UITabBarappearance]setBackgroundImage:[[UIImagealloc]init]];
[[UITabBarappearance]setBackgroundColor:[UIColorwhiteColor]];
```