KakaCustomTabBar
自定义tabbar 可以push时隐藏 pop显示
单利的形式调用 保证项目中只有一个
调用方法: MainTabBarController *tabBarVC = [MainTabBarController shareInstance];
self.window.rootViewController = tabBarVC;
如何设置控制的控制器:
NSArray *titles = @[@"首页", @"县区", @"工具", @"我的"]; NSArray *images = @[@"tabbar_home_default", @"tabbar_municipios_default", @"tabbar_tools_default", @"tabbar_mine_default"]; NSArray *selectedImages = @[@"tabbar_home_select", @"tabbar_municipios_select", @"tabbar_tools_select", @"tabbar_mine_select"];
HomePageVC *home = [[HomePageVC alloc] init]; MunicipiosVC *municipios = [[MunicipiosVC alloc] init]; ToolsVC *tools = [[ToolsVC alloc] init]; MineVC *mine = [[MineVC alloc] init];
// self.viewControllers=@[homePage,municipio,tools,mine];
NSArray *viewControllers = @[home,municipios,tools,mine];;
for (int i = 0; i < viewControllers.count; i++) { UIViewController *childVc = viewControllers; [self SetupChildVc:childVc title:titles image:images selectedImage:selectedImages]; }
GitHub地址下载:https://github.com/guokai1120/KakaTabBar
如果对你有帮助不要忘了给我star支持
下载地址:http://www.wenjiangs.com/wp-content/uploads/2021/docimg35/bfb175a3716c2d89c1e69c4ce6bcb0a4.zip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论