我有一个TableView
自定义单元格。标签smiles
包含链接。
如何将图像从链接放到当前的 ImageView'cell?我的代码
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let identifier = "ClientCell"
self.cell = self.tableView.dequeueReusableCell(withIdentifier: identifier) as? customChatCell
let text = message[Constants.MessageFields.text] ?? ""
let selectedCell = self.tableView.cellForRow(at: indexPath) as? customChatCell
***
if text.range(of:"smiles") != nil {
let url = URL(string: text)
self.cell![indexPath.row].smile.kf.setImage(with: url)
}
***
}
不工作。我收到线路错误self.cell![indexPath.row].smile.kf.setImage(with: url)
类型“customChatCell”没有下标成员
我用的是翠鸟。如果我使用代码
self.cell.smile.kf.setImage(with: url)
图像放入所有单元格,而不是当前。
请帮我修复它。