TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Aug 2016 |
Maintained by CoderZhuXH.
//控制器数组
NSArray *controllerArray = @[@"MainVC",@"MsgVC",@"FriendVC",@"MeVC"];
//title数组
NSArray * titleArray = @[@"首页",@"消息",@"朋友",@"我的"];
//默认图片数组
NSArray *imageArray= @[@"home_tabbar",@"msg_tabbar",@"friend_tabbar",@"me_tabbar"];
//选中图片数组
NSArray *selImageArray = @[@"home_tabbar_sel",@"msg_tabbar_sel",@"friend_tabbar_sel",@"me_tabbar_sel"];
//tabBar高度
CGFloat tabBarHeight = 49.0;
//初始化(height:最小高度为49.0,当传nil 或<49.0时均按49.0处理)
XHTabBar *tabbar = [[XHTabBar alloc] initWithControllerArray:controllerArray titleArray:titleArray imageArray:imageArray selImageArray:selImageArray height:tabBarHeight];
//设置为根控制器
self.window.rootViewController = tabbar;
//push界面时,若需影藏tabBar,调用系统方法设置影藏即可,如下
MsgVC *VC = [[MsgVC alloc] init];
VC.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:VC animated:YES];
/**
* 设置tabBar显示指定控制器
*
* @param index 位置
*/
-(void)showControllerIndex:(NSInteger)index;
/**
* 数字角标
*
* @param num 所要显示数字
* @param index 位置
*/
-(void)showBadgeMark:(NSInteger)badge index:(NSInteger)index;
/**
* 小红点
*
* @param index 位置
*/
-(void)showPointMarkIndex:(NSInteger)index;
/**
* 影藏指定位置角标
*
* @param index 位置
*/
-(void)hideMarkIndex:(NSInteger)index;
//RGB颜色
#define RGBCOLOR(r,g,b) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:1]
//title默认颜色
#define TitleColor [UIColor grayColor]
//title选中颜色
#define TitleColor_Sel RGBCOLOR(41, 167, 245)
//title字体大小
#define TitleFontSize 12.0
//TabBar背景色
#define TabBarBackgroundColor [UIColor whiteColor]
//数字角标直径
#define NumMark_W_H 20
//小红点直径
#define PointMark_W_H 12
pod install
后,导入的不是最新的,请删除Podfile.lock
文件,在执行一次 pod install
XHTabBar 使用 MIT 许可证,详情见 LICENSE 文件