UINavigationController 中的 UITableViewController 表示未知深度的树结构

Posted

技术标签:

【中文标题】UINavigationController 中的 UITableViewController 表示未知深度的树结构【英文标题】:UITableViewController in UINavigationController to represent tree structure of unknown depth 【发布时间】:2014-08-30 05:09:51 【问题描述】:

我对 ios 还是很陌生。我有一些数据本质上是从外部数据库获取的树结构,因此在应用程序的编译时未定义其深度。我想使用 UINavigationController 内的 UITableViewControllers 显示此信息。在这个阶段,我在故事板的 UINavigationController 中嵌入了 UITableViewController,并编写了 UITableViewController 的子类来显示树的第一级。如何以编程方式转到我创建的 UITableViewController 子类的新实例,同时为我在情节提要中定义的原型单元创建引用。是否可以在 iOS 中使用 UITableViewControllers 和 UINavigationController 设置这种结构?

任何帮助将不胜感激。 谢谢!

【问题讨论】:

【参考方案1】:

在您的 TableView 委托中,将一些代码放入 didSelectRowAtIndexPath: 方法中以创建 tableViewController 子类的新实例。要么将填充其单元格所需的任何数据传递给它,要么可能使用您的*** TableView 委托/数据源作为每个新实例的委托/数据源(您必须跟踪数据层次结构中的位置)。然后您可以使用self.navigationController pushViewController:animated: 转换到新的tableViewController。如果您在每个级别使用相同的子类,cellForRowAtIndexPath: 方法将使用相同的单元重用标识符(除非您另外编写代码),因此您的原型单元应该在每个级别都使用。

【讨论】:

谢谢。效果很好。我不得不在子类中重新定义我的原型单元,但其他一切正常。

以上是关于UINavigationController 中的 UITableViewController 表示未知深度的树结构的主要内容,如果未能解决你的问题,请参考以下文章

(Swift) 在嵌套在 Main UINavigationController 中的 UINavigationController 和 UITabController 之间切换

UINavigationController 中的常量 UIBarButtonItem

UINavigationController 中的 setAlpha

UINavigationController:调整大小动画中的标题跳转

UIPopoverController 中的 UINavigationController:设置标题

UITabBarController 问题中的 UINavigationController