本文介绍了跳转到UITabBarController中的特定选项卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想跳转到tabcontroller中的第三个标签页。我在谷歌搜索但没有找到任何帮助。
I want to jump to third tab in tabcontroller. I searched in Google but found nothing helpful.
如果有人可以提供帮助,我将不胜感激。
If anybody can help I will be grateful.
推荐答案
是标题/问题改变了吗?我认为这个问题是关于Xcode ...
Was the title/question changed? I thought the question was about Xcode...
对于你所要求的,尝试设置你的 selectedIndex
UITabBarController,如下所示:
For what you're asking, try setting selectedIndex
of your UITabBarController, like this:
self.tabBarController.selectedIndex = indexOfTab;
但是不要过度使用它,标签之间的一些自动转换可被视为糟糕的用户体验。
However don't overuse it, some automatic transitions between tabs can be considered as bad user experience.
这篇关于跳转到UITabBarController中的特定选项卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!