带有标签栏和导航栏的应用程序
大家好, 这是其中一个应用程序的典型布局。现在我想要单击视图控制器之一(表视图)的行,我想更改选项卡的索引。假设我处于第三视图,我想移至第一视图。
我尝试使用导航控制器的 didShowViewController
委托方法。看来它不起作用。您能建议任何其他方法来做到这一点吗?
谢谢。
Hi all,
this is a typical layout of one of apps. Now what I want on clicking of row of one of the view controllers(table view), I want to change the index of of the tab. Lets say I am in 3rd view, I want to move to the 1st view.
I tried with navigation controller's didShowViewController
delegate method. Seems its not working. Could you please suggest any other way to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在 UITableView 的 didSelectRowAtIndexPath 方法中使用以下代码,然后只需为 Tabbar 设置 SelectedIndex 即可。
Just use the below code in didSelectRowAtIndexPath method of UITableView, then you just need to set the SelectedIndex for Tabbar.