gpt4 book ai didi

ios - 在 tableViewCell 中添加 tableView

转载 作者:行者123 更新时间:2023-12-01 16:13:37 26 4
gpt4 key购买 nike

我正在尝试在表格 View 单元格中使用表格 View 。这是我的代码

class TableViewInsideCell: UITableViewCell, UITableViewDelegate, UITableViewDataSource{

@IBOutlet weak var tableView: UITableView!


override func awakeFromNib() {
super.awakeFromNib()
// Initialization code

tableView.delegate = self
tableView.dataSource = (self as! UITableViewDataSource)
}

override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
}

override func numberOfSections(in tableView: UITableView) -> Int {
return 5
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell( withIdentifier: "identifier",for: indexPath)
return cell
}

}

我收到错误消息告诉我 numberOfSections, numberOfRowsInSectioncellForRowAt不会覆盖其父类(super class)中的任何方法。

最佳答案

当你遵守一个协议(protocol)时,你应该只是 实现方法体。

当你对一个类进行子类化时,你可以 Override方法。

当您使用自定义 TableViewControlleroverride方法,因为您不是符合 UITableViewDataSource 的人,超 View (UITableViewController)是。

但如果你不是从 UITableViewController 继承,就像您继承自 UITableViewCell 的案例一样,该方法不在父类(super class)中,您应该自己实现它。

关于ios - 在 tableViewCell 中添加 tableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58283762/

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