//设置设定选中的UITabBarItem后面的图
selectionIndicatorImage
//设置为选中的tabbaritem后面的图
shadowImage
//设置选中后的字体颜色tintColor
//设置tabbar颜色barTintColor
//设置选中后图案的颜色
selectedImageTintColor
//设置tabbar背景backgroundImage
//选中标签时调用 - ( void )tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item; //将要开始编辑标签时 - ( void )tabBar:(UITabBar *)tabBar willBeginCustomizingItems:(NSArray<UITabBarItem *> *)items; //已经开始编辑标签时 - ( void )tabBar:(UITabBar *)tabBar didBeginCustomizingItems:(NSArray<UITabBarItem *> *)items; //将要进入编辑状态时 - ( void )tabBar:(UITabBar *)tabBar willEndCustomizingItems:(NSArray<UITabBarItem *> *)items changed:( BOOL )changed; //已经进入编辑状态时 - ( void )tabBar:(UITabBar *)tabBar didEndCustomizingItems:(NSArray<UITabBarItem *> *)items changed:( BOOL )changed; |