隐藏模态选项卡栏控制器 - 从视图控制器内的选项卡栏控制器中

发布于 2024-09-18 13:13:45 字数 281 浏览 2 评论 0原文

我的第一个视图有一个时髦的菜单。然后,当您选择一个菜单项时,它会执行 [selfpresentModalViewController:tbcanimated:YES]; (tbc 是一个标签栏控制器,其中有 5 个导航控制器)。

在每个导航控制器中,导航栏中都有一个主页图标。

我希望能够链接此按钮以执行与 PresentModalViewController:animated: 相反的操作,并显示时髦的原始菜单系统。

有什么办法可以做到这一点吗?

谢谢。

I have a first view which has a funky menu thing. Then when you select a menu item it does [self presentModalViewController:tbc animated:YES]; (tbc being a tab bar controller with 5 navigation controllers within it).

In each of the navigation controllers I have a Home icon in the navigation bar.

I want to be able to link this button up to do the opposite of presentModalViewController:animated: and show the funky original menu system.

Is there any way to do this at all?

Thank you.

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

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

发布评论

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

评论(1

最好是你 2024-09-25 13:13:45

我可以建议您使用以下代码

-(void)homeButtonClicked
{
[self.navigationController解雇ModalViewControllerAnimated:NO];
[funkyTabbarController setSelectedIndex:0];

尝试一下。

I can suggest you the following code

-(void)homeButtonClicked
{
[self.navigationController dismissModalViewControllerAnimated:NO];
[funkyTabbarController setSelectedIndex:0];

}

Plese try it.

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