UINavigationcontroller:使用按钮从tabbarcontroller跳转到其他uiview
我还没有尝试过这个。这是一种理论问题。
我有一个选项卡控制器,在一个视图中,让我们称之为“阶段”,我想要一个按钮,为您提供下一个选项卡栏项目(即地图视图)的快捷方式。在地图视图中有很多注释引脚,代表几个阶段的位置。
继续,我想要阶段视图中有一个按钮,可以直接跳转到下一个选项卡栏项目中地图视图中的注释图钉。
我应该像平常一样使用 [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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想直接跳转到另一个选项卡(您不需要在 navigationController 中添加新的视图控制器,但想要其他选项卡的 VC),您可以创建一个按钮或任何设置
selectedViewController
属性的按钮您的UITabBarController
到另一个选项卡中的 viewController。 (如果您的 tabbarcontroller 有常量选项卡(它们不会更改))您可以使用UITabBarController
的viewControllers
数组来完成此操作。像这样的东西应该有效:`
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 yourUITabBarController
to the viewController in the other tab. (if your tabbarcontroller has constant tabs (they dont get changed)) you can do this by using theUITabBarController
'sviewControllers
array. Something like this should work:`