这是我生成表格视图的
Swift代码.我正在尝试设置带有详细标签的tableView.我相信问题的产生是因为
@H_301_2@if (cell == nil) {
println("1")
cell = UITableViewCell(style: .Subtitle,reuseIdentifier: "CellSubtitle")
//cell = tableViewCell
}
永远不会被调用,因此永远不会使用UITableViewCellStyle.Subtitle样式初始化单元格.以下是该方法所需的代码:
@H_301_2@func tableView(tableView: UITableView!,cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! { println("start TableViewCellForRowAtIndexPath") var cell: UITableViewCell! = tableView.dequeueReusableCellWithIdentifier("CellSubtitle") as UITableViewCell if (cell == nil) { println("1") cell = UITableViewCell(style: UITableViewCellStyle.Subtitle,reuseIdentifier: "CellSubtitle") //cell = tableViewCell } cell.textLabel.text = instructions[indexPath.row].text println("2") //cell.detailTextLabel cell.detailTextLabel.text = "HI" println("3") @H_301_2@start load 1 2 done load start TableViewCellForRowAtIndexPath 2 fatal error: Can't unwrap Optional.None (lldb)如何初始化detailTextLabel以插入文本?当我尝试设置标签的文本时,我收到致命错误:无法打开Optional.None.为什么我收到此错误?
单元格不是在故事板中创建的.我使用tableView.registerClass初始化单元格或注册其类(UITableViewCell.self,forCellReuseIdentifier:“CellSubtitle”)