使用未声明的类型'ContactsTableViewCell'

时间:2017-02-09 12:02:34

标签: swift uitableview tableviewcell

我正在努力取得手机联系人。但是我收到了一个错误,例如使用未声明的类型 ContactsTableViewCell。我试过了UITableViewCell,但它没有用。我该怎么办 ?

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
    let cell = tableView.dequeueReusableCell(withIdentifier: "TableCell", for: indexPath) as! ContactsTableViewCell

    let data = dataArray![indexPath.row] as! Data;
    cell.lblName.text = data.name
    cell.imgContact.image = data.image
    return cell
}

1 个答案:

答案 0 :(得分:0)

首先,您应该创建一个名为ContactsTableViewCell的类继承UITableViewCell,或者如果您已经创建了它,请确保将此类添加到目标中。