自定义TabBarController
例如: @interface mainTabBarController : UITabBarController
修改颜色:
self.tabBar.tintColor = [UIColor redColor]; ( 背景颜色修改为红色)
在自己的NavigationController 添加image . title
self.tabBarItem.image = [UIImage imageNamed:@"icon_b.png"];
self.tabBarItem.title = @"首页";
原文:http://qccccc.blog.51cto.com/6004423/1557174