我将Dictionay数据作为键值对。这里的关键是图像,值是图像的描述。如何将这些数据插入自定义表格视图单元格:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cellIdentifier", for: indexPath) as! CustomTableViewCell
// **How do I insert image and description data here*****
return cell
}