从视图到子表视图

发布于 2024-10-15 17:46:54 字数 83 浏览 5 评论 0原文

我可以从基于视图的应用程序开始,当触摸按钮时跳转到带有导航栏的“子视图”和后退按钮以返回主视图吗?

另外...这会违反苹果商店的规定吗?

Can I start with a view based based app and when a button is touched jump to a "child view" with a NavigationBar and the back button to go back the main view?

also...would this be a violation of apple's store rules?

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

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

发布评论

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

评论(1

帝王念 2024-10-22 17:46:54

当然 - 技巧是让您的导航控制器始终存在,但要使用

setNavigationBarHidden:YES animated:NO

它来隐藏在您的根视图中。在子视图中,您可以像平常一样推送它们,但

setNavigationBarHidden:NO animated:YES

在它们的 viewWillAppear 中使用它们。 (调整动画属性,使其看起来像您喜欢的方式)

我不认为它违反了任何规则,我在带有可视主菜单的应用程序中使用了它,该菜单可以推送子视图并可以弹出它们以返回到该视觉主菜单菜单不显示导航栏。

Sure - the trick is to have your navigation controller always present, but to use

setNavigationBarHidden:YES animated:NO

to make it hidden in your root view. In the child views you get there by pushing them as normal but use

setNavigationBarHidden:NO animated:YES

in their viewWillAppear. (tweak the animated property to make it look the way you prefer)

I don't think it violates any rules, I have used it in an app with a visual main menu that pushes child views and can pop them to return to that visual main menu showing no navigation bar.

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