我正在尝试使用一个部分和一行填充一个表。我得到一个“UILabel未包装的可选类型的值”。我很确定我的语法错误或过时。请指教。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
var cell = UITableViewCell()
cell.textLabel.text = "Hello"
return cell
}
答案 0 :(得分:0)
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
var cell = UITableViewCell() cell.textLabel!.text = "Hello"
return cell
}
还有一件事,因为你说电池没有显示"你好"文本。 请检查单元格类型