1. 系统默认情况(见下图):
tabBar系统默认颜色.png
2. 自定义 tabBar 背景色效果(见下图):
自定义tabBar背景色.png
3. 代码如下:
// 设置一个自定义 View,大小等于 tabBar 的大小
UIView *bgView = [[UIView alloc] initWithFrame:self.tabBar.bounds];
// 给自定义 View 设置颜色
bgView.backgroundColor = [UIColor redColor];
// 将自定义 View 添加到 tabBar 上
[self.tabBar insertSubview:bgView atIndex:0];
注意:
- 以上代码要写在
appdelegate.m
的- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
方法里面
- 或者写在继承自
UITabBarController
的自定义的XXTabBarController
里面的- (void)viewDidLoad
方法里面
网友评论