gpt4 book ai didi

ios - 显示空单元格的 TableView

转载 作者:行者123 更新时间:2023-11-28 06:20:39 25 4
gpt4 key购买 nike

如标题所示,我试图在链接到 Controller 的标签中显示一些文本,但只能显示空白单元格。每个标签都正确链接到 Controller ,但单元格仍然是空的。代码有问题吗?

import UIKit

class TableViewCell: UITableViewCell{

@IBOutlet weak var label1: UILabel!
@IBOutlet weak var label2: UILabel!
@IBOutlet weak var Date: UILabel!
}
class Controller: UIViewController, UITableViewDataSource,UITableViewDelegate {

let textCellIdentifier = "ShowCell"

@IBOutlet weak var tableView: UITableView!

override func viewDidLoad() {
super.viewDidLoad()
self.tableView.delegate = self
self.tableView.dataSource? = self
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "ShowCell")
LeagueData.single.addListener {
self.tableView.reloadData()
}
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// return team.count
return 7
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ShowCell") as! TableViewCell!
cell?.label1?.text = "sample text" //LeagueData.single.schedule[0].team1.name
cell?.label2.text = LeagueData.single.schedule[0].team2.name
cell?.Date.text = LeagueData.single.schedule[0].date
print(LeagueData.single.schedule[0].date)
return cell!
}
}

最佳答案

tableView.register(UITableViewCell.self, forCellReuseIdentifier: "ShowCell")

改成这个

tableView.register(TableViewCell.self, forCellReuseIdentifier: "ShowCell")

或者如果您使用 xib,请更改为

tableView.registerNib(UINib(nibName: "TableViewCell", bundle: nil), forCellReuseIdentifier: "ShowCell")

关于ios - 显示空单元格的 TableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43627224/

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