iOS tabbar 设置背景色以及选中标题颜色和未选中颜色的oc代码
时间: 2024-05-04 22:22:17 浏览: 334
iOS 设置状态栏的背景颜色方法
你可以按照以下代码来设置 iOS tabbar 的背景色以及选中和未选中的标题颜色。
```Objective-C
// 设置背景色
[[UITabBar appearance] setBarTintColor:[UIColor redColor]];
// 设置选中的标题颜色
[[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]} forState:UIControlStateSelected];
// 设置未选中的标题颜色
[[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor grayColor]} forState:UIControlStateNormal];
```
你需要将上述代码添加到你的 AppDelegate.m 文件的 `didFinishLaunchingWithOptions` 方法中。记得将颜色值替换成你所需要的颜色。
阅读全文