ChenYilong / CYLTabBarController

[EN]It is an iOS UI module library for adding animation to iOS tabbar items and icons with Lottie, and adding a bigger center UITabBar Item. [CN]【中国特色 TabBar】一行代码实现 Lottie 动画TabBar,支持中间带+号的TabBar样式,自带红点角标,支持动态刷新。【iOS13 & Dark Mode & iPhone XS MAX supported】
MIT License
6.92k stars 1.46k forks source link

如何更改默认选中的视图控制器? #77

Closed xxxIxxxx closed 8 years ago

xxxIxxxx commented 8 years ago

项目中要默认显示第三个,不知道怎么更改。求助!

xxxIxxxx commented 8 years ago
tabBarController.selectedIndex = 2;
这个不管用
ChenYilong commented 8 years ago

你点击PlusButton是不是会像其他TabBarItem一样跳转到控制器?

xxxIxxxx commented 8 years ago

不是,我不要中间的那个按钮。 就是简单五个视图,然后进入应用默认就是显示第三个。

xxxIxxxx commented 8 years ago

比如说 微信 我进入微信就要显示 通讯录 而不是微信

ChenYilong commented 8 years ago

你代码怎么写的,贴代码,有可能的话发Demo给我,luohanchenyilong@163.com

xxxIxxxx commented 8 years ago

已发送

xxxIxxxx commented 8 years ago

tabBar.selectedIndex = 2; 系统tabbar不是可以设置选中视图控制器。 比如说 我的tabbar里有五个视图控制器 ,我进入应用默认要显示第一个,但是我想让他显示第三个。

帮忙看下吧,谢谢了。 有点急。。。

xxxIxxxx commented 8 years ago

已解决 在AppDelegate.m 中加入 tabBarControllerConfig.tabBarController.selectedIndex = 2;

Xlff commented 7 years ago

为何要在appdelegate中设置才有效果,在configure中设置不起作用呢