我試圖在UITableView
的單元格中顯示一些內容。該方案確實達到了cellForRowAtIndexPath:
IBOutlet是零,但它連接在故事板(Swift 2)
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
是零:
我的表格視圖連接如下所示:
對於這裏的eventCell我也取得了查看內容的背景顏色爲藍色,但似乎我沒有看到我的手機全部內容視圖。
您是否在TableView中使用autoLayout?如果是,那麼請檢查您的意見的自動佈局約束。還請檢查您是否具有tableview的映射委託和數據源到Storyboard中的相應ViewController。 –
已檢查:不使用自動佈局約束,並且委託和數據源已連接 –
您可以顯示您的自定義單元格嗎? –