我无法弄清楚为什么没有输出这个自定义单元格。
我在故事板中设置了自定义单元格(没有笔尖)。 我有一个文本字段和2个标签,当我尝试在自定义单元格类中访问它们时为nil。我几乎可以肯定我已经把所有东西都搞定了,但仍然没有。
我在故事板中选择了我的表格单元格并将自定义类别设置为TimesheetTableViewCell
我也控制点击表格并将数据源和委托设置为TimesheetViewController
我的自定义单元格类:
import UIKit
class TimesheetTableViewCell: UITableViewCell {
@IBOutlet var duration: UITextField!
@IBOutlet var taskName: UILabel!
@IBOutlet var taskNotes: UILabel!
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
override init?(style: UITableViewCellStyle, reuseIdentifier: String!) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
println("Cell's initialised")// I see this
println(reuseIdentifier)// prints TimesheetCell
}
override func setSelected(selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
}
func setCell(duration: String, taskName: String, taskNotes: String){
println("setCell called")
self.duration?.text = duration
self.taskName?.text = taskName
self.taskNotes?.text = taskNotes
}
我的控制器:
class TimesheetViewController: UIViewController, UITableViewDataSource, UITableViewDelegate{
@IBOutlet var timesheetTable: UITableView!
var items = ["Item 1", "Item2", "Item3", "Item4"]
override func viewDidLoad() {
super.viewDidLoad()
self.timesheetTable.registerClass(TimesheetTableViewCell.self, forCellReuseIdentifier: "TimesheetCell")
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("TimesheetCell", forIndexPath: indexPath) as TimesheetTableViewCell
println(items[indexPath.row]) // prints corresponding item
println(cell.duration?.text) // prints nil
cell.setCell(items[indexPath.row], taskName: items[indexPath.row], taskNotes: items[indexPath.row])
return cell
}
答案 0 :(得分:35)
问题在于这一行:
self.timesheetTable.registerClass(TimesheetTableViewCell.self, forCellReuseIdentifier: "TimesheetCell")
删除它。该行说:" 不从故事板中获取单元格。"但是你做想要从故事板中获取单元格。
(但请确保故事板中的单元格标识符为"TimesheetCell"
,否则您将崩溃。)
答案 1 :(得分:1)
非常确定您需要删除该行
self.timesheetTable.registerClass(TimesheetTableViewCell.self, forCellReuseIdentifier: "TimesheetCell")
来自viewDidLoad()的。