UITabbar相关

//设置设定选中的UITabBarItem后面的图

selectionIndicatorImage

//设置为选中的tabbaritem后面的图

shadowImage

//设置选中后的字体颜色

tintColor

//设置tabbar颜色 

barTintColor

//设置选中后图案的颜色

selectedImageTintColor

//设置tabbar背景

backgroundImage


//delegate

//选中标签时调用
- ( void )tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item;
//将要开始编辑标签时
- ( void )tabBar:(UITabBar *)tabBar willBeginCustomizingItems:(NSArray *)items;           //已经开始编辑标签时         
- ( void )tabBar:(UITabBar *)tabBar didBeginCustomizingItems:(NSArray *)items;           
//将要进入编辑状态时
- ( void )tabBar:(UITabBar *)tabBar willEndCustomizingItems:(NSArray *)items changed:( BOOL )changed; 
//已经进入编辑状态时
- ( void )tabBar:(UITabBar *)tabBar didEndCustomizingItems:(NSArray *)items changed:( BOOL )changed;


你可能感兴趣的:(UItabbar)