将数据从嵌套数据数组填充到 UITableViewCell 内的 UITableView



我是 swift 和 iOS 编程的新手。我正在尝试制作两层表视图。表格视图单元格内的表格视图基本上是我想说的。主表视图运行良好,但表视图内的表视图根本无法正常工作。我已经尝试了一切...

# 模型

// Main Model Struct
struct MainModel {
private(set) public var title: String
private(set) public var document: [Documents] = [Documents]()
init(title: String, document: [Documents]) {
self.title = title
self.document = document
}
}
// Document model struct
struct Documents {
private(set) public var name: String
private(set) public var link: String
init(name: String, link: String){
self.name = name
self.link = link
}
}

# 数据服务类

class DataService{
static let instance = DataService()
private let dataArray = [
MainModel(title: "Demo 1", document: [Documents(name: "DOC 1", link: "http://www.google.com"), Documents(name: "DOC 2", link: "http://www.facebook.com")])
]
func getArrays() -> [MainModel] {
return dataArray
}
}

# 主视图控制器

import UIKit
class ResourceDataVC: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet weak var dataTable: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
self.dataTable.delegate = self
self.dataTable.dataSource = self
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return DataService.instance.getArrays().count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if let cell = tableView.dequeueReusableCell(withIdentifier: “mainCell”) as? MainTableViewCell {
let _item = DataService.instance.getArrays()[indexPath.row]
cell.updateCell(data: _item)
return cell
} else {
return ResourceCell()
}
}
}

# 主表视图单元格类

import UIKit
class MainTableViewCell: UITableViewCell, UITableViewDelegate, UITableViewDataSource{
@IBOutlet weak var title: UILabel!
@IBOutlet weak var documentTable: UITableView!
var documentRes: [Documents] = [Documents]()
override func awakeFromNib() {
super.awakeFromNib()
self.documentTable.delegate = self
self.documentTable.dataSource = self
}
func updateCell(data: MainModel) {
self.title.text = data.title
self.documentRes = data.document
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.documentRes.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if let cell = tableView.dequeueReusableCell(withIdentifier: “documentTableCell”) as? DocumentCell {
let _doc = documentRes[indexPath.row]
cell.updateDocument(document: _doc)
return cell
} else {
return DocumentCell()
}
}
}

# 文档表视图单元格类

import UIKit
class DocumentCell: UITableViewCell {
@IBOutlet weak var docName: UILabel!
@IBOutlet weak var docLink: UILabel!
func updateDocument(document: Documents) {
self.docName.text = document.name
self.docLink.text = document.link
}
}

而且这种方法永远不会被调用...为什么??我认为这可能是问题所在...

// from: MainTableViewCell
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if let cell = tableView.dequeueReusableCell(withIdentifier: “documentTableCell”) as? DocumentCell {
let _doc = documentRes[indexPath.row]
cell.updateDocument(document: _doc)
return cell
} else {
return DocumentCell()
}
}

请帮助我!

MainTableViewCell做的updateCell结束时

self.documentTable.reloadData()

最新更新