gpt4 book ai didi

swift - 如何将 UITableView 作为 subview 添加到 xib 中的 UIView?

转载 作者:行者123 更新时间:2023-11-28 15:55:28 24 4
gpt4 key购买 nike

我有一个使用 xib 文件构建的自定义 View 。在此自定义 View 中,有一个 UIView,我想在其中添加一个静态 UITableView 作为 subview 。此处显示的 UITableView 出现在 storyboard 上并关联到 UITableViewController。我做了以下事情:

let vc = (UIStoryboard(name: "Main", bundle: nil))
.instantiateViewControllerWithIdentifier("tableController") as! TableController
vc.loadViewIfNeeded()
table = vc.table // this is an outlet, I'm sure it is not nil
table.delegate = vc
table.dataSource = vc
table.backgroundColor = UIColor.greenColor()
containerView.addSubview(table)

我可以在我的自定义 View 上看到绿色背景,但表格单元格没有显示

no table cells!我知道表格的导出不是零,因为在调试时,如果我使用控制台下方的 Quick Look 图标检查 table 变量,我可以看到表格。

更新

我意识到我的方法不是一个好方法。

我通过使我的 View 成为 UITableViewDataSourceUITableViewDelegate 的 subview 并以编程方式创建 UITable 和所需的 来实现我想要的结果>TableViewCell。大量的代码!!

最佳答案

The UITableView to be shown here is present on the storyboard and associated to a UITableViewController.

在那种情况下,您所做的是完全非法的,这就是它不起作用的原因。您不能只调用 instantiateViewControllerWithIdentifier,获取 View Controller 的 View ,然后使用 addSubview 将 View 填充到界面中。

毕竟,想一想:如果您这样做, View Controller 会发生什么?它不存在了,你得到了一个完全没有功能的 View 。

为了使 TableController 成为 self(当前 View Controller - 而您不是跳舞。

关于swift - 如何将 UITableView 作为 subview 添加到 xib 中的 UIView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41813208/

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