Tabbar 的 tabBarItem 图片背景颜色修改

自定义TabBarController

  例如: @interface mainTabBarController : UITabBarController


修改颜色:

    self.tabBar.tintColor = [UIColor redColor]; ( 背景颜色修改为红色)


在自己的NavigationController 添加image . title

     self.tabBarItem.image = [UIImage imageNamed:@"icon_b.png"];
     self.tabBarItem.title = @"首页";

你可能感兴趣的:(tabbar,tabBarItem,的,图片背景颜色修改)