在导航栏中后退 1 步?
我希望按钮具有与按导航中的后退按钮相同的效果,其中视图返回到上一个视图。
我该怎么做?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向视图控制器添加一个方法:
并在 IB 中添加按钮,将
touchupInside
事件挂接到刚刚添加的新添加的goBack:
方法。Add a method to your view controller:
And add the button in IB, hook up the
touchupInside
event to the newly addedgoBack:
method you just added.