可选类型UILabel的值未展开。

时间:2016-02-17 18:12:21

标签: ios swift

我正在尝试使用一个部分和一行填充一个表。我得到一个“UILabel未包装的可选类型的值”。我很确定我的语法错误或过时。请指教。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
    {

        var cell = UITableViewCell()
        cell.textLabel.text = "Hello"
        return cell

    }

1 个答案:

答案 0 :(得分:0)

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{ 
var cell = UITableViewCell() cell.textLabel!.text = "Hello" 
return cell 
}

还有一件事,因为你说电池没有显示"你好"文本。 请检查单元格类型