iPhone 导航按钮 上一个按钮 - 初学者
我需要实现后退按钮; (就像在网页中一样,当您单击后退
按钮时,屏幕会将焦点设置到上一个屏幕)。
我在这里没有使用导航控件,而是想使用导航栏
然后在其上添加导航按钮
来完成此操作。现在,当用户单击导航按钮
时,应显示之前的视图
。
我该怎么做呢。
我的屏幕如下所示:
当我单击“Hello”时,它应该转到上一个屏幕。
I need to implement the back button; (as in webpages, when you click the back
button the screen will set focus to the previous screen).
I am not using a navigation control here, instead i want to do this using a Navigation bar
and then adding a navigation button
on it. Now when the user clicks on the navigation button
the previous view
should be displayed.
How should i do this.
My screen looks like this :
When i click on Hello, it should go to the previous screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 UINavigationController 类注册 然后尝试这样的事情:
Check out UINavigationController Class Regerence then try something like this:
你真的应该使用
UINavigationController< /code>
因为这就是它的全部目的。
You really should use a
UINavigationController
as that is its entire purpose.