我是Swift和iOS编程的新手。我试图做一个两层的tableview。 tableview单元格内的Tableview基本上就是我要说的。主表视图运行正常,但是表视图内部的表视图根本无法运行。.我已经尝试了所有方法...
#个型号
import * as helper from './reexported-helpers';
helper['hello']();
helper['bye']();
#数据服务类
// 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
}
}
#Main View Controller
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
}
}
#Main TableViewCell类
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()
}
}
}
#文档TableViewCell类
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
}
}
请帮助我!
答案 0 :(得分:1)
在updateCell
的{{1}}结尾
MainTableViewCell