UINavigationcontroller:使用按钮从tabbarcontroller跳转到其他uiview

发布于 2024-11-19 21:13:09 字数 285 浏览 1 评论 0原文

我还没有尝试过这个。这是一种理论问题。

我有一个选项卡控制器,在一个视图中,让我们称之为“阶段”,我想要一个按钮,为您提供下一个选项卡栏项目(即地图视图)的快捷方式。在地图视图中有很多注释引脚,代表几个阶段的位置。

继续,我想要阶段视图中有一个按钮,可以直接跳转到下一个选项卡栏项目中地图视图中的注释图钉。

我应该像平常一样使用 [navigationcontroller Pushcontroller:animated:] 还是存在其他方法来做到这一点?在最后一种情况下,我将通常使用推送到另一个地图视图。

I havent tried this, yet. So is a kind of theoretical question.

I have a tabbarcontroller, and in one view, let us call it "stages", i want to have a button that give you a shortcut to the next tab bar item that is a mapview. In the mapview have I lot of annotations pins, that represent the position of several stages.

Resuming, I want a button in the stages view that jump directly to the annotation pin in the mapview in the next tabbar item.

Should I use like normally the [navigationcontroller pushcontroller: animated:] or exist other method to do it? In last case I will use normally push to another mapview.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

耳根太软 2024-11-26 21:13:09

如果您想直接跳转到另一个选项卡(您不需要在 navigationController 中添加新的视图控制器,但想要其他选项卡的 VC),您可以创建一个按钮或任何设置 selectedViewController 属性的按钮您的 UITabBarController 到另一个选项卡中的 viewController。 (如果您的 tabbarcontroller 有常量选项卡(它们不会更改))您可以使用 UITabBarControllerviewControllers 数组来完成此操作。像这样的东西应该有效:

-(IBAction) jumpToMapTab:(id)sender {

    myTabBarController.selectedViewController = [[myTabBarController viewControllers] objectAtIndex:indexOfMyMapTab];

}

`

If you want to directly jump to the other tab (you don't want a new viewcontroller in your navigationController, but want the other tab's VC), you can create a button or whatever that sets the selectedViewController property of your UITabBarController to the viewController in the other tab. (if your tabbarcontroller has constant tabs (they dont get changed)) you can do this by using the UITabBarController's viewControllers array. Something like this should work:

-(IBAction) jumpToMapTab:(id)sender {

    myTabBarController.selectedViewController = [[myTabBarController viewControllers] objectAtIndex:indexOfMyMapTab];

}

`

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