自定义TabBarController
例如: @interface mainTabBarController : UITabBarController
修改颜色:
self.tabBar.tintColor = [UIColor redColor]; ( 背景颜色修改为红色)
在自己的NavigationController 添加image . title
self.tabBarItem.image = [UIImage imageNamed:@"icon_b.png"];
self.tabBarItem.title = @"首页";
时间: 2024-10-24 15:29:28