Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用以编程方式切换 uitabbar 选择
[myTabBarController setSelectedIndex:index]
但同时我想向新选择的 uitabbar 项目的根控制器发送一些信息。我怎样才能做到这一点?
具体来说,我在主页中有一个搜索框,当用户输入搜索字符串并单击搜索时,我希望搜索结果出现在另一个 uitabbar 项下,即搜索。如何将搜索字符串发送到新的根视图控制器?
UINavigationController *newlySelectedRootController = [tabBarController.viewControllers objectAtIndex:index];
从这里你可以做任何你想做的事newlySelectedViewController。
newlySelectedViewController