1.属性
viewControllers 控制器的集合-数组 tabBarController.viewControllers = @[vc1,vc2];
addChildViewController 添加控制器到集合中 [tabBarController addChildViewController:vc]
tabBarItem tabbar控制器的按钮
tabBarItem.image tabbar控制器按钮的图像 tabBarController.tabBarItem.image
tabBarItem.title tabbar控制器按钮的文字 tabBarController.tabBarItem.title = @"首页";