带有标签栏和导航栏的应用程序

发布于 2024-11-17 02:12:17 字数 256 浏览 3 评论 0原文

在此处输入图像描述

大家好, 这是其中一个应用程序的典型布局。现在我想要单击视图控制器之一(表视图)的行,我想更改选项卡的索引。假设我处于第三视图,我想移至第一视图。

我尝试使用导航控制器的 didShowViewController 委托方法。看来它不起作用。您能建议任何其他方法来做到这一点吗?

谢谢。

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜嗑 2024-11-24 02:12:17

只需在 UITableView 的 didSelectRowAtIndexPath 方法中使用以下代码,然后只需为 Tabbar 设置 SelectedIndex 即可。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    // Navigation logic may go here. Create and push another view controller.
    [self.tabBarController setSelectedIndex:indexPath.row];

}

Just use the below code in didSelectRowAtIndexPath method of UITableView, then you just need to set the SelectedIndex for Tabbar.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    // Navigation logic may go here. Create and push another view controller.
    [self.tabBarController setSelectedIndex:indexPath.row];

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文