我试图在 UITableView 的单元格中显示一些内容。该程序确实到达 cellForRowAtIndexPath:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: EventTableViewCell = self.tableView.dequeueReusableCellWithIdentifier("eventCell") as! EventTableViewCell
let date = self.eventArray[indexPath.row].startTime
let calendar = NSCalendar.currentCalendar()
let minutes = calendar.component(NSCalendarUnit.Minute, fromDate: date)
var minutesString: String
if (minutes == 0) {
minutesString = "00"
} else {
minutesString = String(calendar.component(NSCalendarUnit.Minute, fromDate: date))
}
let hours = calendar.component(NSCalendarUnit.Hour, fromDate: date)
//this next line of code works, i see cell text:
// cell.textLabel?.text = self.eventArray[indexPath.row].title + " - \(hours):\(minutesString)"
//these lines do not work, see empty cells:
cell.cellLable?.text = self.eventArray[indexPath.row].title + " - \(hours):\(minutesString)"
cell.textField?.text = self.eventArray[indexPath.row].notes
return cell
}
我已正确连接网点:
如果我设置断点,单元格似乎是 EventTableViewCell ,但 cellLabel 和 textField 都是 nil:
我的表格 View 连接如下所示:
这里的 eventCell 连接检查器:
我还将内容 View 的背景颜色设为蓝色,但我的单元格中似乎看不到整个内容 View 。
我的自定义单元格类如下所示:
Best Answer-推荐答案 strong>
检查您在 IB 中的单元格标识符是否正确。 Let cell... 返回 nil,这似乎是您的问题。
let cell: EventTableViewCell = self.tableView.dequeueReusableCellWithIdentifier("eventCell") as! EventTableViewCell
关于ios - IBOutlet 为零,但它在 Storyboard 中连接(Swift 2),我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/33478194/
|