iPhone更改按钮点击上的选项卡栏项目
我的 iPhone 应用程序中有 4 个选项卡。当用户单击选项卡 1 中的按钮时,我想将用户移动/切换到另一个选项卡(假设选项卡 2)。
怎么做呢?
I have 4 tabs in my iphone application. When user will click a button in tab-1, I want to move/switch user to another tab suppose tab-2.
How to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
其中
tabIndex
是要切换到的选项卡的索引。You can use
where
tabIndex
is the index of the tab you want to switch to.还可能指出,如果您在视图内,则应该使用 super 而不是 self。
Might also point out that if you are inside a view, you should use super instead of self.
Swift 3.0 版本的 @Jasarien 答案:
其中
tabIndex
是您要切换到的选项卡的索引。Swift 3.0 version of @Jasarien answer:
where
tabIndex
is the index of the tab you want to switch to.