第一视图控制器 - func tableView:UITableViewCell

时间:2014-08-06 06:04:10

标签: ios swift

我在以下函数中遇到错误:

func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
    let cell: UITableViewCell = UITableViewCell(style: <#UITableViewCellStyle#>.Subtitle, reuseIdentifier: "test")

    cell.textLabel.text = taskMgr.tasks[indexPath.row].name
    cell.detailTextLabel.text = taskMgr.tasks[indexPath.row].desc

    return cell
}


    let cell: UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "test")

两个错误:

1)预期','分隔符 2)表达式列表中的预期表达

请heeeeelp!

编辑: 我拿了&lt;#&gt;超出UITableViewCellStyle,它仍然无法正常工作......

第二次编辑: 发现错误。我有以下

enter image description here

显然,您必须双击UITableViewCellStyle,阴影将消失。这样就行了。

1 个答案:

答案 0 :(得分:1)

    let cell: UITableViewCell = UITableViewCell(style:UITableViewCellStyle.Subtitle, reuseIdentifier: "test")

应该工作得很好。