MonoTouch PopToViewController

发布于 2024-11-08 13:30:29 字数 93 浏览 0 评论 0原文

有人有使用 MonoTouch/Xamarin 的 NavigationController.PopToViewContoller(); 示例吗?

Does anyone have an example for NavigationController.PopToViewContoller(); using MonoTouch/Xamarin?

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

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

发布评论

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

评论(3

青萝楚歌 2024-11-15 13:30:29

要返回到上一个 ViewController:

this.NavigationController.PopViewControllerAnimated(true);

要转到根视图控制器

this.NavigationController.PopToRootViewController(true);

要转到新的 viewController,请执行以下操作:

this.NavigationController.PopToViewController( MyNewViewController, true);

To go back to the last ViewController:

this.NavigationController.PopViewControllerAnimated(true);

To go to the Root View Controller

this.NavigationController.PopToRootViewController(true);

To go to a new viewController do this:

this.NavigationController.PopToViewController( MyNewViewController, true);
三生殊途 2024-11-15 13:30:29

首先,您想要弹出的视图控制器需要位于导航堆栈中,因此您必须在导航之前的某个时刻推送到它。

First the view controller you want to pop to, needs to be in the navigation stack, so you must have pushed to it at some point previously in navigation.

疯狂的代价 2024-11-15 13:30:29

[self.navigationController popViewControllerAnimated:YES];

[self.navigationController popViewControllerAnimated:YES];

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