在导航栏中后退 1 步?

发布于 2024-10-21 18:16:01 字数 58 浏览 0 评论 0原文

我希望按钮具有与按导航中的后退按钮相同的效果,其中视图返回到上一个视图。

我该怎么做?

I want a button to have the same effect that pressing the back button in the navigation would have, where the view goes back to the last view.

How do i do this?

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

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

发布评论

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

评论(1

原谅我要高飞 2024-10-28 18:16:01

向视图控制器添加一个方法:

-(IBAction)goBack:(id)sender
{
     [self.navigationController popViewControllerAnimated:YES];
}

并在 IB 中添加按钮,将 touchupInside 事件挂接到刚刚添加的新添加的 goBack: 方法。

Add a method to your view controller:

-(IBAction)goBack:(id)sender
{
     [self.navigationController popViewControllerAnimated:YES];
}

And add the button in IB, hook up the touchupInside event to the newly added goBack: method you just added.

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