我有一个名为customContactsTableViewCell的自定义uitableviewcell。我正试图使用此代码更新uitableviewCell内容

let cell1 = self.contactsTableView.dequeueReusableCell(withIdentifier: "contacts", for: IndexPath.init(row: index, section: 0)) as! customContactsTableViewCell
cell1.cellView.image = statusFinal.1
self.contactsTableView.reloadData()

但什么也没发生。没有错误,单元格视图没有更新

最佳答案

尝试:

let cell1 = tableView.cellForRow(at: IndexPath(row: index, section: 0)) as! customContactsTableViewCell
cell1.cellView.image = statusFinal.1

10-08 03:31