导航堆栈应仅包含一个视图

发布于 2024-12-08 19:47:45 字数 359 浏览 0 评论 0原文

我有一个导航控制器和一个带有多个条目的表视图。如果我选择一个条目,则会推送一个新的 DetailViewController。在 DetailViewController 中,您可以向右滑动以推送 tableView 的下一个 Entry 的 DetailViewController。它工作得很好,但是如果人们滑动大约 10 次,他们需要按后退按钮 10 次才能返回到 tableView。所以我正在寻找一种好方法让人们按回并进入 tableView。

我考虑过重新创建后退按钮并使用 popToRootViewControllerAnimated:

但还有其他方法可以解决我的问题吗? 也许类似于删除导航堆栈上的所有视图并仅保留最后一个视图。

I have a Navigation Controller and a tableView with several Entries. If i select an Entry a new DetailViewController gets pushed. in the DetailViewController you can swipe right to push the DetailViewController of the next Entry of the tableView. Its working pretty well, but if people swipe about 10 times, they need to press the back button 10 times to get back to the tableView. So I'm looking for a nice way for people pressing back and coming to the tableView.

I thought about recreating the backbutton and use the popToRootViewControllerAnimated:

but is there another way i can solve my problem?
maybe something like deleting all views on the navigation stack and keep only the last one.

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

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

发布评论

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

评论(1

你的笑 2024-12-15 19:47:45

您可以使用表视图中下一个/上一个条目的详细信息来更新详细信息,而不是推送新的 DetailViewController 。

您将丢失滑动/推动动画,但这可以解决。

另一种可能性是使用:

[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:1] animated:YES];

您需要计算出 tableViewController 的索引。如果它是根视图控制器,那么索引应该为 0。

Instead of pushing a new DetailViewController you could just update the details with the details from the next/previous Entry from the tableview.

You would lose the swipe/push animation, but this could be worked around.

Another possibility is to use:

[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:1] animated:YES];

You'll need to work out what index the tableViewController is. If it's the root view controller then the index should be 0.

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