我正在努力獲取手機通訊錄。但我得到了一個錯誤,如使用未申報類型ContactsTableViewCell
。我試過UITableViewCell
,但沒有奏效。我該怎麼辦 ?使用未聲明的類型'ContactsTableViewCell'
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
}
您是否爲ContactsTableViewCell創建了一個類? –
你的模塊中的某個地方必須有一個'class ContactsTableViewCell {...}'。而'Data'是Swift 3中的保留字。不要將它用作自定義結構/類。 – vadian
複製並粘貼錯誤? – vikingosegundo