KakaCustomTabBar

发布于 2021-12-23 09:18:24 字数 1655 浏览 859 评论 0

自定义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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文