我正在尝试在其每个单元格中包含一个UITableView
(次要)的UITableView
(次要)。主要和次要表视图具有自己的数据源对象类,而MajorDatasource对象包含MinorDatasource对象的数组,如下所示。
我在每个类的UITableViewDatasource
函数中都设置了断点,尽管tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath)
似乎从未调用过MinorDatasource
的{{1}}函数数组包含对象。
我了解到labels
的{{1}}属性很弱,因此需要在某处强烈引用它,但是,我认为在这种情况下,这是真的,这里做错了吗?
datasource
答案 0 :(得分:0)
您还没有显示其余的代码(单元类,控制器类等),因此很难说出您可能缺少的东西或做错了。
因此,根据您 did 包含的代码以及您的描述,这是一个有效的示例,应该与您要使用的代码非常接近。
结果:
全部通过代码完成,因此没有@IBOutlets
之类的...只需创建一个新的UIViewController
并将其类分配为MajorMinorViewController
:
//
// MajorMinorViewController.swift
//
// Created by Don Mag on 9/13/19.
//
import UIKit
class MajorTableViewCell: UITableViewCell {
var tableView: UITableView = {
let v = UITableView()
v.translatesAutoresizingMaskIntoConstraints = false
return v
}()
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
commonInit()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
commonInit()
}
func commonInit() -> Void {
contentView.backgroundColor = .yellow
contentView.addSubview(tableView)
NSLayoutConstraint.activate([
tableView.topAnchor.constraint(equalTo: contentView.layoutMarginsGuide.topAnchor, constant: 0.0),
tableView.bottomAnchor.constraint(equalTo: contentView.layoutMarginsGuide.bottomAnchor, constant: 0.0),
tableView.leadingAnchor.constraint(equalTo: contentView.layoutMarginsGuide.leadingAnchor, constant: 0.0),
tableView.trailingAnchor.constraint(equalTo: contentView.layoutMarginsGuide.trailingAnchor, constant: 0.0),
tableView.heightAnchor.constraint(equalToConstant: 205.0),
])
tableView.register(MinorTableViewCell.self, forCellReuseIdentifier: "MinorTableViewCell")
}
}
class MinorTableViewCell: UITableViewCell {
// default UITableViewCell
}
class MajorDatasource: NSObject, UITableViewDataSource {
var minorDatasources:[MinorDatasource]
init(minorDatasources:[MinorDatasource]) {
self.minorDatasources = minorDatasources
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return minorDatasources.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "MajorTableViewCell")! as! MajorTableViewCell
cell.tableView.dataSource = minorDatasources[indexPath.row]
return cell
}
}
class MinorDatasource: NSObject, UITableViewDataSource {
var labels:[String]
init(labels:[String]) {
self.labels = labels
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return labels.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "MinorTableViewCell") as! MinorTableViewCell
cell.textLabel?.text = labels[indexPath.row]
return cell
}
}
class MajorMinorViewController: UIViewController {
var tableView: UITableView = {
let v = UITableView()
v.translatesAutoresizingMaskIntoConstraints = false
return v
}()
var minorLabels: [[String]] = [
["One", "Two", "Three", "Four", "Five", "Six", "Seven"],
["A", "B", "C", "D", "E", "F", "G", "H"],
["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"],
]
var majorDatasource: MajorDatasource!
var minorDatasources:[MinorDatasource] = [MinorDatasource]()
override func viewDidLoad() {
super.viewDidLoad()
view.addSubview(tableView)
NSLayoutConstraint.activate([
tableView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 0.0),
tableView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor, constant: 0.0),
tableView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 0.0),
tableView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: 0.0),
])
for labelArray in minorLabels {
let mds = MinorDatasource(labels: labelArray)
minorDatasources.append(mds)
}
tableView.register(MajorTableViewCell.self, forCellReuseIdentifier: "MajorTableViewCell")
majorDatasource = MajorDatasource(minorDatasources: minorDatasources)
tableView.dataSource = majorDatasource
}
}