如何在iPhone上的UINavigationBar上切换页面
我想询问有关 iPhone 应用程序上 UINavigationBar 上的 UI 项目的问题。我的程序中,有一个导航栏和 UITableView,如下结构。
UIView (DataRootViewController.m)
|
+- UINavigationBar
|
+- UITableView
而且,我希望当用户按下 UITableView 上的单元格之一时它显示数据的详细信息。
然而,我不知道我该怎么办。我只是创建一个具有 UIViewController 类型的类(称为 DataDetailViewController.m)并将其留空。下一步我应该做什么?我应该在详细视图的导航栏上添加哪个 UI 元素,以便让用户返回到基本页面。
非常感谢。
I want to ask a question about the UI item on the UINavigationBar on the iPhone application. Im my program, there are a navigation bar and UITableView, like the following structure.
UIView (DataRootViewController.m)
|
+- UINavigationBar
|
+- UITableView
And, I want the it display the detail of the data when the user press one of the cell on the UITableView.
However, I don't know what should I do. I just create a class with UIViewController type (called DataDetailViewController.m) and leave it empty. What should I do for the next step? Which UI element should I add on the navigation bar in the detail view in order to let the user to go back to the basic page.
thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 UINavigationController 而不是尝试复制该行为。在您的应用程序委托上,尝试类似的操作。
现在,这个 RootViewController 应该有一个表格视图,当用户点击表格时,您应该构建详细视图控制器并使用
You should be using a UINavigationController instead of trying to replicate the behavior. On your app delegate, try something like this.
Now, this RootViewController should have a table view, and when a user taps the table you should build your detail view controller and use