gpt4 book ai didi

xcode - IOS:在 subview 中使用导航 Controller

转载 作者:行者123 更新时间:2023-11-28 23:16:25 26 4
gpt4 key购买 nike

在我的程序 View 中,我有一个按钮,使用这个按钮我打开了一个 subview ;这个 subview 是一个带有 TableView 的 View 。当我按下一行 TableView 时,我想转到另一个 View ,所以我想用导航 Controller 来实现;我该怎么做?

最佳答案

当您单击表格的其中一行时,您的表格 View 委托(delegate)将收到一条 tableView:didSelectRowAtIndexPath: 消息。

您可以将创建 UINavigationController 的代码放在那里并将您的新 View 推送到它。

此示例代码(来自另一个 answer of mine on S.O.)展示了如何做到这一点:

 UINavigationController* navigation = [[UINavigationController alloc] init];
iVkViewController *overviewViewController = [[iVkViewController alloc] init];
overviewViewController.title = @"First";
[navigation pushViewController:overviewViewController animated:NO];

这应该可以帮助您让事情走上正轨。

旁注:您可能会从一开始就考虑使用导航 Controller ,这会使您的 UI 更加“行为良好”,但这最终取决于您的应用要求。

关于xcode - IOS:在 subview 中使用导航 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6189105/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com