MonoTouch PopToViewController
有人有使用 MonoTouch/Xamarin 的 NavigationController.PopToViewContoller();
示例吗?
Does anyone have an example for NavigationController.PopToViewContoller();
using MonoTouch/Xamarin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要返回到上一个 ViewController:
要转到根视图控制器
要转到新的 viewController,请执行以下操作:
To go back to the last ViewController:
To go to the Root View Controller
To go to a new viewController do this:
首先,您想要弹出的视图控制器需要位于导航堆栈中,因此您必须在导航之前的某个时刻推送到它。
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.
[self.navigationController popViewControllerAnimated:YES];
[self.navigationController popViewControllerAnimated:YES];