我想在UITableViewCell的datailTextLabel中设置一个值。如果代码运行,应用程序崩溃。
这是错误:fatal error: unexpectedly found nil while unwrapping an Optional value
这是发生错误的方法:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCellWithIdentifier("Cell") as UITableViewCell
cell.detailTextLabel!.text = "Date" //error occurs
return cell
}
可能有用的信息: https://www.dropbox.com/s/240sy3k1ic2hu0q/Bildschirmfoto%202015-02-28%20um%2021.03.35.png?dl=0
答案 0 :(得分:0)
使用:
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
此外,没有必要强行打开它。即使存在detailTextLabel
,我也会使用cell.detailTextLabel?.text = "Date"
来确保您的单元格是支持detailTextLabel
的样式。 IE浏览器。细节左,细节右,字幕。