我想创建一个自定义表视图。我有一个UITableViewController:
class MainListView: UITableViewController{
var invoceList: [InvoceObject] = []
@IBOutlet var tbMain: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.register(CustomCell.self, forCellReuseIdentifier: "cell")
tbMain.delegate = self
self.tbMain.dataSource = self
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.invoceList.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CustomCell
cell.lblBuyerName?.text = self.invoceList[indexPath.row].BUYER_NAME
cell.lblDate?.text = self.invoceList[indexPath.row].CREATED_AT
cell.lblPriceGross?.text = self.invoceList[indexPath.row].PRICE + " " + self.invoceList[indexPath.row].CURRENCY
cell.backgroundColor = UIColor(white: 1, alpha: 0.5)
return cell
}
}
我的UITableViewCell类:
class CustomCell: UITableViewCell {
@IBOutlet weak var lblBuyerName: UILabel!
@IBOutlet weak var lblDate: UILabel!
@IBOutlet weak var lblPriceGross: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
构建后我得到一个空单元格。我有很多行像invoceList.count,但没有标签,它看起来像空表。我做错了什么?
答案 0 :(得分:2)
由于您使用UITableViewController
,因此存在具有已连接数据源和委托的隐式tableView
属性。你应该使用它来避免混淆。
如果您使用原型单元格,请删除行self.tableView.register...
。
答案 1 :(得分:1)
如果单元格的内容是在单独的xib文件中定义的,则需要注册该文件而不是类 - 如果只注册该类,则不会创建实际标签,因为类本身不会创建它们。
//Replacing CustomCellNibName with the name of your xib file
tableView.register(UINib.init(nibName: "CustomCellNibName", bundle: nil), forCellReuseIdentifier: "Cell")
如果在故事板中将单元格创建为原型单元格,则无需注册它,只需将该类与故事板文件中的单元格相关联(在标识检查器选项卡下,自定义类),然后填写在您要使用的名称中(在本例中为“Cell”),在Attributes检查器字段Identifier下。