gpt4 book ai didi

swift - 嵌套 UITableViewDataSource 不调用 cellForRowAt :

转载 作者:行者123 更新时间:2023-11-30 10:36:19 28 4
gpt4 key购买 nike

我正在尝试拥有 UITableView (主要)其中包含另一个 UITableView (次要)在每个单元格中。主要和次要 TableView 都有自己的数据源对象类,MajorDatasource 对象包含 MinorDatasource 对象的数组,如下所示。

我已在 UITableViewDatasource 中放置了断点每个类的函数,看起来像 tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) MinorDatasource 的功能从未被调用,即使 labels数组包含对象。

据我了解,datasource UITableView 的属性很弱,因此需要在某个地方对其进行强有力的引用,但是,我认为在这种情况下这是正确的,我在这里做错了什么吗?

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")!
cell.textLabel?.text = labels[indexPath.row]
return cell
}
}

最佳答案

您还没有显示其余的代码 - 单元类、 Controller 类等 - 因此很难说您可能缺少什么或做错了什么。

因此,根据您包含的代码以及您的描述,这里是一个工作示例,应该非常接近您想要的内容。

结果:

enter image description here

全部通过代码进行,因此没有@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

}

}

关于swift - 嵌套 UITableViewDataSource 不调用 cellForRowAt :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57919270/

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