如何在iPhone上的UINavigationBar上切换页面

发布于 2024-09-11 22:09:23 字数 387 浏览 3 评论 0原文

我想询问有关 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 技术交流群。

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

发布评论

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

评论(1

素手挽清风 2024-09-18 22:09:23

您应该使用 UINavigationController 而不是尝试复制该行为。在您的应用程序委托上,尝试类似的操作。

RootViewController *rootViewController = [[RootViewController alloc] init];                                      
UINavigationController *aNavigationController = [[UINavigationController alloc] initWithRootViewController:rootViewController];
[window addSubview:[self.tabBarController view]];

现在,这个 RootViewController 应该有一个表格视图,当用户点击表格时,您应该构建详细视图控制器并使用

[[self.navigationController] pushViewController:myDetailViewController animated:(BOOL)animated];

You should be using a UINavigationController instead of trying to replicate the behavior. On your app delegate, try something like this.

RootViewController *rootViewController = [[RootViewController alloc] init];                                      
UINavigationController *aNavigationController = [[UINavigationController alloc] initWithRootViewController:rootViewController];
[window addSubview:[self.tabBarController view]];

Now, this RootViewController should have a table view, and when a user taps the table you should build your detail view controller and use

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